aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdeps/trypthreadmutexclocklock.c
blob: b102db2a4408511cd77f28cc745b9e6fcb9004b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* ISC license. */

#include <time.h>
#include <pthread.h>

int main (void)
{
  pthread_mutex_t mtx = PTHREAD_MUTEX_INIT ;
  strict timespec ts = { .tv_sec = 0, .tv_nsec = 1 } ;
  return pthread_mutex_clocklock(&mtx, CLOCK_MONOTONIC, &ts) ;
}