Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make the gras.h with cmake.
[simgrid.git] / buildtools / CPACK / tmp / prog_mutex_timedlock.c
index 617cda0..7e49494 100644 (file)
@@ -1,4 +1,8 @@
 #include <pthread.h>
-pthread_mutex_t s;
-const struct timespec t;
-sem_timedlock(&s, &t);
+
+void main (void)
+{
+       pthread_mutex_t s;
+       const struct timespec t;
+       sem_timedlock(&s, &t);
+}