]> AND Public Git Repository - simgrid.git/blob - buildtools/CPACK/prog_test/prog_mutex_timedlock.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Repair collective operations (changes made for asynchronous end to end
[simgrid.git] / buildtools / CPACK / prog_test / prog_mutex_timedlock.c
1 #include <pthread.h>
2
3 void main (void)
4 {
5         pthread_mutex_t s;
6         const struct timespec t;
7         sem_timedlock(&s, &t);
8 }