summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/upm.i
diff options
context:
space:
mode:
Diffstat (limited to 'peripheral/libupm/src/upm.i')
-rw-r--r--peripheral/libupm/src/upm.i31
1 files changed, 0 insertions, 31 deletions
diff --git a/peripheral/libupm/src/upm.i b/peripheral/libupm/src/upm.i
deleted file mode 100644
index e69c63f..0000000
--- a/peripheral/libupm/src/upm.i
+++ /dev/null
@@ -1,31 +0,0 @@
-%include "std_string.i"
-%include "stdint.i"
-%include "upm_exception.i"
-
-%apply int { speed_t };
-%apply int { mraa_result_t };
-%apply int { mraa::Result };
-
-#if (SWIG_JAVASCRIPT_V8)
-%{
- // Because there's no guarantee that v8 will ever call garbage collection,
- // we're adding a function that will allow a user to call it manually
- void cleanUp()
- {
- // Call the v8 garbage collector as long as there is memory to clean up
- // See https://codereview.chromium.org/412163003 for this API change
-#if (SWIG_V8_VERSION < 0x032838)
- while (!v8::V8::IdleNotification())
-#else
- while (!v8::Isolate::GetCurrent()->IdleNotification(1000))
-#endif
- {;}
- }
-%}
-void cleanUp();
-#endif
-
-#if (SWIGJAVA)
-%typemap(jtype) jobject runnable "java.lang.Runnable"
-%typemap(jstype) jobject runnable "java.lang.Runnable"
-#endif