X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bc911012d7b8acd058eb71df52b6a2686bb4f8ef..725184f3bce66a3eff87cc3a01e5d96477a5d28a:/src/xbt/dynar_private.h diff --git a/src/xbt/dynar_private.h b/src/xbt/dynar_private.h index 1bcbac5a71..0a9bdfea8e 100644 --- a/src/xbt/dynar_private.h +++ b/src/xbt/dynar_private.h @@ -12,15 +12,12 @@ #include "xbt/synchro.h" typedef struct xbt_dynar_s { - unsigned long size; - unsigned long used; - unsigned long elmsize; - void *data; - void_f_pvoid_t *free_f; - xbt_mutex_t mutex; - int synchro_process_pid; + unsigned long size; + unsigned long used; + unsigned long elmsize; + void *data; + void_f_pvoid_t free_f; + xbt_mutex_t mutex; } s_xbt_dynar_t; -void _dynar_unlock(xbt_dynar_t); -void _dynar_lock(xbt_dynar_t dynar); #endif /* DYNAR_PRIVATE_H */