Remove non-standard PT_LOAD segment containing ELF headers from libraries
[glibc/nacl-glibc.git] / rt / tst-cputimer2.c
blob397d7998c0cefdcdc90b1894e7b040670cf524e2
1 /* Tests for POSIX timer implementation using thread CPU clock. */
3 #include <unistd.h>
5 #if _POSIX_THREADS && defined _POSIX_CPUTIME
7 #include <errno.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <fcntl.h>
12 #include <time.h>
13 #include <pthread.h>
15 static clockid_t worker_thread_clock;
17 #define TEST_CLOCK worker_thread_clock
18 #define TEST_CLOCK_MISSING(clock) \
19 (setup_test () ? "thread CPU clock timer support" : NULL)
21 /* This function is intended to rack up both user and system time. */
22 static void *
23 chew_cpu (void *arg)
25 while (1)
27 static volatile char buf[4096];
28 for (int i = 0; i < 100; ++i)
29 for (size_t j = 0; j < sizeof buf; ++j)
30 buf[j] = 0xaa;
31 int nullfd = open ("/dev/null", O_WRONLY);
32 for (int i = 0; i < 100; ++i)
33 for (size_t j = 0; j < sizeof buf; ++j)
34 buf[j] = 0xbb;
35 write (nullfd, (char *) buf, sizeof buf);
36 close (nullfd);
39 return NULL;
42 static int
43 setup_test (void)
45 /* Test timers on a thread CPU clock by having a worker thread eating
46 CPU. First make sure we can make such timers at all. */
48 pthread_t th;
49 int e = pthread_create (&th, NULL, chew_cpu, NULL);
50 if (e != 0)
52 printf ("pthread_create: %s\n", strerror (e));
53 exit (1);
56 e = pthread_getcpuclockid (th, &worker_thread_clock);
57 if (e == EPERM || e == ENOENT || e == ENOTSUP)
59 puts ("pthread_getcpuclockid does not support other threads");
60 return 1;
62 if (e != 0)
64 printf ("pthread_getcpuclockid: %s\n", strerror (e));
65 exit (1);
68 timer_t t;
69 if (timer_create (TEST_CLOCK, NULL, &t) != 0)
71 printf ("timer_create: %m\n");
72 return 1;
74 timer_delete (t);
76 return 0;
79 #else
80 # define TEST_CLOCK_MISSING(clock) "process clocks"
81 #endif
83 #include "tst-timer4.c"