diff --git a/test/snippets/clock_gettime.c b/test/snippets/clock_gettime.c new file mode 100644 index 0000000..94f3629 --- /dev/null +++ b/test/snippets/clock_gettime.c @@ -0,0 +1,8 @@ +struct timespec ts; +clockid_t ckid = CLOCK_REALTIME; +int ret = clock_gettime(ckid, &ts); +if (ret == 0) { + printf("[%s] clock_gettime(CLOCK_REALTIME[%d], &ts) -> {%lld, %ld}\n", where, ckid, (long long)ts.tv_sec, ts.tv_nsec); + } else { + printf("[%s] clock_gettime(CLOCK_REALTIME[%d], &ts) returned non-zero (%d), errno = %d (%s)\n", where, ckid, ret, errno, strerror(errno)); + } diff --git a/test/snippets/clock_gettime.variable b/test/snippets/clock_gettime.variable new file mode 100644 index 0000000..3f75b5f --- /dev/null +++ b/test/snippets/clock_gettime.variable @@ -0,0 +1 @@ +FAKETIME 2020-02-02 02:02:02+00:00