Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add code coverage for simgrid compilation
[simgrid.git] / buildtools / CPACK / prog_test / prog_sem_timedwait.c
1 #include <semaphore.h>
2
3 int main()
4 {
5         sem_t *s;
6         const struct timespec * t;
7         sem_timedwait(s, t);
8 }