File: tst-timer5.c

package info (click to toggle)
glibc 2.41-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-proposed-updates, trixie-updates
  • size: 300,376 kB
  • sloc: ansic: 1,050,583; asm: 238,243; makefile: 20,379; python: 13,537; sh: 11,827; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (38 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* Timer test using the monotonic clock.  */

#include <time.h>
#include <unistd.h>

#if defined CLOCK_MONOTONIC && defined _POSIX_MONOTONIC_CLOCK

# define TEST_CLOCK	CLOCK_MONOTONIC
# define TEST_CLOCK_MISSING(clock) \
  (setup_test () ? "CLOCK_MONOTONIC" : NULL)

# include <stdio.h>

static int
setup_test (void)
{
  if (sysconf (_SC_MONOTONIC_CLOCK) <= 0)
    return 1;

  /* The user-level timers implementation doesn't support CLOCK_MONOTONIC,
     even though sysconf claims it will.  */
  timer_t t;
  if (timer_create (TEST_CLOCK, NULL, &t) != 0)
    {
      printf ("timer_create: %m\n");
      return 1;
    }
  timer_delete (t);

  return 0;
}

# include "tst-timer4.c"

#else
# define TEST_FUNCTION	0
# include "../test-skeleton.c"
#endif