Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index e20523f383..f655ac4e50 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -3301,7 +3301,10 @@ public static final long /*int*/ g_type_register_static (long /*int*/ parent_typ
lock.unlock();
}
}
-/** @param vtable cast=(GThreadFunctions *) */
+/**
+ * @method flags=dynamic
+ * @param vtable cast=(GThreadFunctions *)
+ */
public static final native void _g_thread_init(long /*int*/ vtable);
public static final void g_thread_init(long /*int*/ vtable) {
lock.lock();
@@ -3311,6 +3314,9 @@ public static final void g_thread_init(long /*int*/ vtable) {
lock.unlock();
}
}
+/**
+ * @method flags=dynamic
+ */
public static final native boolean _g_thread_supported();
public static final boolean g_thread_supported() {
lock.lock();

Back to the top