1 /* Test program for process and thread CPU clocks.
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 #if (_POSIX_THREADS - 0) <= 0
24 # define TEST_FUNCTION 0
36 static pthread_barrier_t barrier
;
38 /* This function is intended to rack up both user and system time. */
42 pthread_barrier_wait (&barrier
);
46 static volatile char buf
[4096];
47 for (int i
= 0; i
< 100; ++i
)
48 for (size_t j
= 0; j
< sizeof buf
; ++j
)
50 int nullfd
= open ("/dev/null", O_WRONLY
);
51 for (int i
= 0; i
< 100; ++i
)
52 for (size_t j
= 0; j
< sizeof buf
; ++j
)
54 write (nullfd
, (char *) buf
, sizeof buf
);
61 static unsigned long long int
62 tsdiff (const struct timespec
*before
, const struct timespec
*after
)
64 struct timespec diff
= { .tv_sec
= after
->tv_sec
- before
->tv_sec
,
65 .tv_nsec
= after
->tv_nsec
- before
->tv_nsec
};
66 while (diff
.tv_nsec
< 0)
69 diff
.tv_nsec
+= 1000000000;
71 return diff
.tv_sec
* 1000000000ULL + diff
.tv_nsec
;
74 static unsigned long long int
75 test_nanosleep (clockid_t clock
, const char *which
,
76 const struct timespec
*before
, int *bad
)
78 const struct timespec sleeptime
= { .tv_nsec
= 100000000 };
79 int e
= clock_nanosleep (clock
, 0, &sleeptime
, NULL
);
80 if (e
== EINVAL
|| e
== ENOTSUP
|| e
== ENOSYS
)
82 printf ("clock_nanosleep not supported for %s CPU clock: %s\n",
88 printf ("clock_nanosleep on %s CPU clock: %s\n", which
, strerror (e
));
93 struct timespec after
;
94 if (clock_gettime (clock
, &after
) < 0)
96 printf ("clock_gettime on %s CPU clock %lx => %s\n",
97 which
, (unsigned long int) clock
, strerror (errno
));
102 unsigned long long int diff
= tsdiff (before
, &after
);
103 if (diff
< sleeptime
.tv_nsec
|| diff
> sleeptime
.tv_nsec
* 2)
105 printf ("clock_nanosleep on %s slept %llu (outside reasonable range)\n",
111 struct timespec sleeptimeabs
= sleeptime
;
112 sleeptimeabs
.tv_sec
+= after
.tv_sec
;
113 sleeptimeabs
.tv_nsec
+= after
.tv_nsec
;
114 while (sleeptimeabs
.tv_nsec
> 1000000000)
116 ++sleeptimeabs
.tv_sec
;
117 sleeptimeabs
.tv_nsec
-= 1000000000;
119 e
= clock_nanosleep (clock
, TIMER_ABSTIME
, &sleeptimeabs
, NULL
);
122 printf ("absolute clock_nanosleep on %s CPU clock: %s\n",
123 which
, strerror (e
));
128 struct timespec afterabs
;
129 if (clock_gettime (clock
, &afterabs
) < 0)
131 printf ("clock_gettime on %s CPU clock %lx => %s\n",
132 which
, (unsigned long int) clock
, strerror (errno
));
137 unsigned long long int sleepdiff
= tsdiff (&sleeptimeabs
, &afterabs
);
138 if (sleepdiff
> sleeptime
.tv_nsec
)
141 absolute clock_nanosleep on %s %llu past target (outside reasonable range)\n",
146 unsigned long long int diffabs
= tsdiff (&after
, &afterabs
);
147 if (diffabs
< sleeptime
.tv_nsec
|| diffabs
> sleeptime
.tv_nsec
* 2)
150 absolute clock_nanosleep on %s slept %llu (outside reasonable range)\n",
155 return diff
+ diffabs
;
164 clockid_t process_clock
, th_clock
, my_thread_clock
;
168 e
= clock_getcpuclockid (0, &process_clock
);
171 printf ("clock_getcpuclockid on self => %s\n", strerror (e
));
175 e
= pthread_getcpuclockid (pthread_self (), &my_thread_clock
);
178 printf ("pthread_getcpuclockid on self => %s\n", strerror (e
));
182 /* This is a kludge. This test fails if the semantics of thread and
183 process clocks are wrong. The old code using hp-timing without kernel
184 support has bogus semantics if there are context switches. We don't
185 fail to report failure when the proper functionality is not available
186 in the kernel. It so happens that Linux kernels without correct CPU
187 clock support also lack CPU timer support, so we use use that to guess
188 that we are using the bogus code and not test it. */
190 if (timer_create (my_thread_clock
, NULL
, &t
) != 0)
192 printf ("timer_create: %m\n");
193 puts ("No support for CPU clocks with good semantics, skipping test");
199 pthread_barrier_init (&barrier
, NULL
, 2);
201 e
= pthread_create (&th
, NULL
, chew_cpu
, NULL
);
204 printf ("pthread_create: %s\n", strerror (e
));
208 e
= pthread_getcpuclockid (th
, &th_clock
);
209 if (e
== ENOENT
|| e
== ENOSYS
|| e
== ENOTSUP
)
211 puts ("pthread_getcpuclockid does not support other threads");
215 pthread_barrier_wait (&barrier
);
218 if (clock_getres (th_clock
, &res
) < 0)
220 printf ("clock_getres on thread clock %lx => %s\n",
221 (unsigned long int) th_clock
, strerror (errno
));
225 printf ("live thread clock %lx resolution %lu.%.9lu\n",
226 (unsigned long int) th_clock
, res
.tv_sec
, res
.tv_nsec
);
228 struct timespec process_before
, process_after
;
229 if (clock_gettime (process_clock
, &process_before
) < 0)
231 printf ("clock_gettime on process clock %lx => %s\n",
232 (unsigned long int) th_clock
, strerror (errno
));
236 struct timespec before
, after
;
237 if (clock_gettime (th_clock
, &before
) < 0)
239 printf ("clock_gettime on live thread clock %lx => %s\n",
240 (unsigned long int) th_clock
, strerror (errno
));
243 printf ("live thread before sleep => %lu.%.9lu\n",
244 before
.tv_sec
, before
.tv_nsec
);
246 struct timespec me_before
, me_after
;
247 if (clock_gettime (my_thread_clock
, &me_before
) < 0)
249 printf ("clock_gettime on live thread clock %lx => %s\n",
250 (unsigned long int) th_clock
, strerror (errno
));
253 printf ("self thread before sleep => %lu.%.9lu\n",
254 me_before
.tv_sec
, me_before
.tv_nsec
);
256 struct timespec sleeptime
= { .tv_nsec
= 500000000 };
257 nanosleep (&sleeptime
, NULL
);
259 if (clock_gettime (th_clock
, &after
) < 0)
261 printf ("clock_gettime on live thread clock %lx => %s\n",
262 (unsigned long int) th_clock
, strerror (errno
));
265 printf ("live thread after sleep => %lu.%.9lu\n",
266 after
.tv_sec
, after
.tv_nsec
);
268 if (clock_gettime (process_clock
, &process_after
) < 0)
270 printf ("clock_gettime on process clock %lx => %s\n",
271 (unsigned long int) th_clock
, strerror (errno
));
275 if (clock_gettime (my_thread_clock
, &me_after
) < 0)
277 printf ("clock_gettime on live thread clock %lx => %s\n",
278 (unsigned long int) th_clock
, strerror (errno
));
281 printf ("self thread after sleep => %lu.%.9lu\n",
282 me_after
.tv_sec
, me_after
.tv_nsec
);
284 unsigned long long int th_diff
= tsdiff (&before
, &after
);
285 unsigned long long int pdiff
= tsdiff (&process_before
, &process_after
);
286 unsigned long long int my_diff
= tsdiff (&me_before
, &me_after
);
288 if (th_diff
< 100000000 || th_diff
> 600000000)
290 printf ("thread before - after %llu outside reasonable range\n",
295 if (my_diff
> 100000000)
297 printf ("self thread before - after %llu outside reasonable range\n",
304 printf ("process before - after %llu outside reasonable range (%llu)\n",
309 process_after
.tv_nsec
+= test_nanosleep (th_clock
, "thread",
311 process_after
.tv_nsec
+= test_nanosleep (process_clock
, "process",
312 &process_after
, &result
);
313 test_nanosleep (CLOCK_PROCESS_CPUTIME_ID
,
314 "PROCESS_CPUTIME_ID", &process_after
, &result
);
318 e
= clock_nanosleep (CLOCK_THREAD_CPUTIME_ID
, 0, &sleeptime
, NULL
);
321 printf ("clock_nanosleep CLOCK_THREAD_CPUTIME_ID: %s\n",
329 # define TEST_FUNCTION do_test ()
332 #include "../test-skeleton.c"