X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0b338053bf57bfe29230791472d1d4c6b16e0cb1..c81b88b7af71898176fabb4177118edfc3a70c22:/src/xbt/xbt_rl_synchro.c?ds=inline diff --git a/src/xbt/xbt_rl_synchro.c b/src/xbt/xbt_rl_synchro.c index 1a6b52f48b..1f42eeaf25 100644 --- a/src/xbt/xbt_rl_synchro.c +++ b/src/xbt/xbt_rl_synchro.c @@ -83,6 +83,14 @@ void xbt_mutex_destroy(xbt_mutex_t mutex) { xbt_os_mutex_destroy( (xbt_os_mutex_t)mutex ); } +#ifdef WIN32 + enum { /* KEEP IT IN SYNC WITH OS IMPLEM */ + SIGNAL = 0, + BROADCAST = 1, + MAX_EVENTS = 2 + }; +#endif + /***** condition related functions *****/ typedef struct xbt_cond_ { /* KEEP IT IN SYNC WITH OS IMPLEMENTATION (both win and lin) */