From: cherierm Date: Wed, 26 Sep 2007 14:09:46 +0000 (+0000) Subject: Now the java implementation of the msg process don't use the os locks. The functions... X-Git-Tag: v3.3~1065 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cc7cd93ed2970afc40cb0173c7f2921095df80a1 Now the java implementation of the msg process don't use the os locks. The functions connected to these locks are now not necessary git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4726 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/java/jxbt_context.c b/src/java/jxbt_context.c index ea7991f222..1e17340195 100644 --- a/src/java/jxbt_context.c +++ b/src/java/jxbt_context.c @@ -305,20 +305,6 @@ void* xbt_context_get_jprocess(xbt_context_t context) { return context->jprocess; } -void xbt_context_set_jmutex(xbt_context_t context,void *jm) { - context->mutex = jm; -} -void* xbt_context_get_jmutex(xbt_context_t context) { - return context->mutex; -} - -void xbt_context_set_jcond(xbt_context_t context,void *jc) { - context->cond = jc; -} -void* xbt_context_get_jcond(xbt_context_t context) { - return context->cond; -} - void xbt_context_set_jenv(xbt_context_t context,void* je) { context->jenv = je; }