Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Stubs of the functions allowing the upper JAVA layer (user interface) to get back...
[simgrid.git] / src / xbt / context.c
index 40f8dc7..9ad4a8a 100644 (file)
@@ -420,3 +420,16 @@ void xbt_context_kill(xbt_context_t context)
        return;
 }
 /* @} */
+
+/* Stub of the stuff to interact with JAVA threads; not used in native lib */
+void  xbt_context_set_jprocess(xbt_context_t context, void *jp) {}
+void* xbt_context_get_jprocess(xbt_context_t context)           { return NULL; }
+
+void  xbt_context_set_jmutex(xbt_context_t context,void *jm)    {}
+void* xbt_context_get_jmutex(xbt_context_t context)             { return NULL; }
+
+void  xbt_context_set_jcond(xbt_context_t context,void *jc)     {}
+void* xbt_context_get_jcond(xbt_context_t context)              { return NULL; }
+
+void  xbt_context_set_jenv(xbt_context_t context,void* je)      {}
+void* xbt_context_get_jenv(xbt_context_t context)               { return NULL; }