Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename CPACK to Cmake.
[simgrid.git] / buildtools / Cmake / 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 }