Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Now the java implementation of the msg process don't use the os locks. The functions...
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 26 Sep 2007 14:14:54 +0000 (14:14 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 26 Sep 2007 14:14:54 +0000 (14:14 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4732 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/simix/smx_process.c

index f539ee8..f904952 100644 (file)
@@ -388,26 +388,6 @@ void *SIMIX_process_get_jprocess(smx_process_t process)
   return xbt_context_get_jprocess(process->simdata->context);
 }
 
-void SIMIX_process_set_jmutex(smx_process_t process, void *jm)
-{
-  xbt_context_set_jmutex(process->simdata->context, jm);
-}
-
-void *SIMIX_process_get_jmutex(smx_process_t process)
-{
-  return xbt_context_get_jmutex(process->simdata->context);
-}
-
-void SIMIX_process_set_jcond(smx_process_t process, void *jc)
-{
-  xbt_context_set_jcond(process->simdata->context, jc);
-}
-
-void *SIMIX_process_get_jcond(smx_process_t process)
-{
-  return xbt_context_get_jcond(process->simdata->context);
-}
-
 void SIMIX_process_set_jenv(smx_process_t process, void *je)
 {
   xbt_context_set_jenv(process->simdata->context, je);