1 /* Test program for process CPU clocks.
2 Copyright (C) 2004-2017 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, see
17 <http://www.gnu.org/licenses/>. */
30 /* This function is intended to rack up both user and system time. */
36 static volatile char buf
[4096];
37 for (int i
= 0; i
< 100; ++i
)
38 for (size_t j
= 0; j
< sizeof buf
; ++j
)
40 int nullfd
= open ("/dev/null", O_WRONLY
);
41 for (int i
= 0; i
< 100; ++i
)
42 for (size_t j
= 0; j
< sizeof buf
; ++j
)
44 write (nullfd
, (char *) buf
, sizeof buf
);
57 pid_t dead_child
, child
;
59 /* Fork a child and let it die, to give us a PID known not be valid
60 (assuming PIDs don't wrap around during the test). */
71 if (wait (&x
) != dead_child
)
78 /* POSIX says we should get ESRCH for this. */
79 e
= clock_getcpuclockid (dead_child
, &cl
);
80 if (e
!= ENOSYS
&& e
!= ESRCH
&& e
!= EPERM
)
82 printf ("clock_getcpuclockid on dead PID %d => %s\n",
83 dead_child
, strerror (e
));
87 /* Now give us a live child eating up CPU time. */
100 e
= clock_getcpuclockid (child
, &cl
);
103 puts ("clock_getcpuclockid does not support other processes");
108 printf ("clock_getcpuclockid on live PID %d => %s\n",
109 child
, strerror (e
));
114 const clockid_t child_clock
= cl
;
116 if (clock_getres (child_clock
, &res
) < 0)
118 printf ("clock_getres on live PID %d clock %lx => %s\n",
119 child
, (unsigned long int) child_clock
, strerror (errno
));
123 printf ("live PID %d clock %lx resolution %ju.%.9ju\n",
124 child
, (unsigned long int) child_clock
,
125 (uintmax_t) res
.tv_sec
, (uintmax_t) res
.tv_nsec
);
127 struct timespec before
, after
;
128 if (clock_gettime (child_clock
, &before
) < 0)
130 printf ("clock_gettime on live PID %d clock %lx => %s\n",
131 child
, (unsigned long int) child_clock
, strerror (errno
));
135 /* Should be close to 0.0. */
136 printf ("live PID %d before sleep => %ju.%.9ju\n",
137 child
, (uintmax_t) before
.tv_sec
, (uintmax_t) before
.tv_nsec
);
139 struct timespec sleeptime
= { .tv_nsec
= 500000000 };
140 if (nanosleep (&sleeptime
, NULL
) != 0)
142 perror ("nanosleep");
147 if (clock_gettime (child_clock
, &after
) < 0)
149 printf ("clock_gettime on live PID %d clock %lx => %s\n",
150 child
, (unsigned long int) child_clock
, strerror (errno
));
154 /* Should be close to 0.5. */
155 printf ("live PID %d after sleep => %ju.%.9ju\n",
156 child
, (uintmax_t) after
.tv_sec
, (uintmax_t) after
.tv_nsec
);
158 struct timespec diff
= { .tv_sec
= after
.tv_sec
- before
.tv_sec
,
159 .tv_nsec
= after
.tv_nsec
- before
.tv_nsec
};
160 if (diff
.tv_nsec
< 0)
163 diff
.tv_nsec
+= 1000000000;
166 || diff
.tv_nsec
> 600000000
167 || diff
.tv_nsec
< 100000000)
169 printf ("before - after %ju.%.9ju outside reasonable range\n",
170 (uintmax_t) diff
.tv_sec
, (uintmax_t) diff
.tv_nsec
);
174 sleeptime
.tv_nsec
= 100000000;
175 e
= clock_nanosleep (child_clock
, 0, &sleeptime
, NULL
);
176 if (e
== EINVAL
|| e
== ENOTSUP
|| e
== ENOSYS
)
178 printf ("clock_nanosleep not supported for other process clock: %s\n",
183 printf ("clock_nanosleep on other process clock: %s\n", strerror (e
));
188 struct timespec afterns
;
189 if (clock_gettime (child_clock
, &afterns
) < 0)
191 printf ("clock_gettime on live PID %d clock %lx => %s\n",
192 child
, (unsigned long int) child_clock
, strerror (errno
));
197 struct timespec d
= { .tv_sec
= afterns
.tv_sec
- after
.tv_sec
,
198 .tv_nsec
= afterns
.tv_nsec
- after
.tv_nsec
};
202 d
.tv_nsec
+= 1000000000;
205 || d
.tv_nsec
< sleeptime
.tv_nsec
206 || d
.tv_nsec
> sleeptime
.tv_nsec
* 2)
208 printf ("nanosleep time %ju.%.9ju outside reasonable range\n",
209 (uintmax_t) d
.tv_sec
, (uintmax_t) d
.tv_nsec
);
215 if (kill (child
, SIGKILL
) != 0)
222 /* Wait long enough to let the child finish dying. */
224 sleeptime
.tv_nsec
= 200000000;
225 if (nanosleep (&sleeptime
, NULL
) != 0)
227 perror ("nanosleep");
232 struct timespec dead
;
233 if (clock_gettime (child_clock
, &dead
) < 0)
235 printf ("clock_gettime on dead PID %d clock %lx => %s\n",
236 child
, (unsigned long int) child_clock
, strerror (errno
));
240 /* Should be close to 0.6. */
241 printf ("dead PID %d => %ju.%.9ju\n",
242 child
, (uintmax_t) dead
.tv_sec
, (uintmax_t) dead
.tv_nsec
);
244 diff
.tv_sec
= dead
.tv_sec
- after
.tv_sec
;
245 diff
.tv_nsec
= dead
.tv_nsec
- after
.tv_nsec
;
246 if (diff
.tv_nsec
< 0)
249 diff
.tv_nsec
+= 1000000000;
251 if (diff
.tv_sec
!= 0 || diff
.tv_nsec
> 200000000)
253 printf ("dead - after %ju.%.9ju outside reasonable range\n",
254 (uintmax_t) diff
.tv_sec
, (uintmax_t) diff
.tv_nsec
);
258 /* Now reap the child and verify that its clock is no longer valid. */
261 if (waitpid (child
, &x
, 0) != child
)
268 if (clock_gettime (child_clock
, &dead
) == 0)
270 printf ("clock_gettime on reaped PID %d clock %lx => %ju%.9ju\n",
271 child
, (unsigned long int) child_clock
,
272 (uintmax_t) dead
.tv_sec
, (uintmax_t) dead
.tv_nsec
);
279 printf ("clock_gettime on reaped PID %d clock %lx => %s\n",
280 child
, (unsigned long int) child_clock
, strerror (errno
));
283 if (clock_getres (child_clock
, &dead
) == 0)
285 printf ("clock_getres on reaped PID %d clock %lx => %ju%.9ju\n",
286 child
, (unsigned long int) child_clock
,
287 (uintmax_t) dead
.tv_sec
, (uintmax_t) dead
.tv_nsec
);
294 printf ("clock_getres on reaped PID %d clock %lx => %s\n",
295 child
, (unsigned long int) child_clock
, strerror (errno
));
302 if (kill (child
, SIGKILL
) != 0 && errno
!= ESRCH
)
308 if (waitpid (child
, &x
, 0) != child
&& errno
!= ECHILD
)
320 #define TEST_FUNCTION do_test ()
321 #include "../test-skeleton.c"