Logo AND Algorithmique Numérique Distribuée

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