1 /* Test program for process CPU clocks.
2 Copyright (C) 2004 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
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 %lu.%.9lu\n",
124 child
, (unsigned long int) child_clock
, res
.tv_sec
, res
.tv_nsec
);
126 struct timespec before
, after
;
127 if (clock_gettime (child_clock
, &before
) < 0)
129 printf ("clock_gettime on live PID %d clock %lx => %s\n",
130 child
, (unsigned long int) child_clock
, strerror (errno
));
134 printf ("live PID %d before sleep => %lu.%.9lu\n",
135 child
, before
.tv_sec
, before
.tv_nsec
);
137 struct timespec sleeptime
= { .tv_nsec
= 500000000 };
138 nanosleep (&sleeptime
, NULL
);
140 if (clock_gettime (child_clock
, &after
) < 0)
142 printf ("clock_gettime on live PID %d clock %lx => %s\n",
143 child
, (unsigned long int) child_clock
, strerror (errno
));
147 printf ("live PID %d after sleep => %lu.%.9lu\n",
148 child
, after
.tv_sec
, after
.tv_nsec
);
150 struct timespec diff
= { .tv_sec
= after
.tv_sec
- before
.tv_sec
,
151 .tv_nsec
= after
.tv_nsec
- before
.tv_nsec
};
152 if (diff
.tv_nsec
< 0)
155 diff
.tv_nsec
+= 1000000000;
158 || diff
.tv_nsec
> 600000000
159 || diff
.tv_nsec
< 100000000)
161 printf ("before - after %lu.%.9lu outside reasonable range\n",
162 diff
.tv_sec
, diff
.tv_nsec
);
166 sleeptime
.tv_nsec
= 100000000;
167 e
= clock_nanosleep (child_clock
, 0, &sleeptime
, NULL
);
168 if (e
== EINVAL
|| e
== ENOTSUP
|| e
== ENOSYS
)
170 printf ("clock_nanosleep not supported for other process clock: %s\n",
175 printf ("clock_nanosleep on other process clock: %s\n", strerror (e
));
180 struct timespec afterns
;
181 if (clock_gettime (child_clock
, &afterns
) < 0)
183 printf ("clock_gettime on live PID %d clock %lx => %s\n",
184 child
, (unsigned long int) child_clock
, strerror (errno
));
189 struct timespec d
= { .tv_sec
= afterns
.tv_sec
- after
.tv_sec
,
190 .tv_nsec
= afterns
.tv_nsec
- after
.tv_nsec
};
194 d
.tv_nsec
+= 1000000000;
197 || d
.tv_nsec
< sleeptime
.tv_nsec
198 || d
.tv_nsec
> sleeptime
.tv_nsec
* 2)
200 printf ("nanosleep time %lu.%.9lu outside reasonable range\n",
201 d
.tv_sec
, d
.tv_nsec
);
207 if (kill (child
, SIGKILL
) != 0)
214 /* Wait long enough to let the child finish dying. */
216 sleeptime
.tv_nsec
= 200000000;
217 nanosleep (&sleeptime
, NULL
);
219 struct timespec dead
;
220 if (clock_gettime (child_clock
, &dead
) < 0)
222 printf ("clock_gettime on dead PID %d clock %lx => %s\n",
223 child
, (unsigned long int) child_clock
, strerror (errno
));
227 printf ("dead PID %d => %lu.%.9lu\n",
228 child
, dead
.tv_sec
, dead
.tv_nsec
);
230 diff
.tv_sec
= dead
.tv_sec
- after
.tv_sec
;
231 diff
.tv_nsec
= dead
.tv_nsec
- after
.tv_nsec
;
232 if (diff
.tv_nsec
< 0)
235 diff
.tv_nsec
+= 1000000000;
237 if (diff
.tv_sec
!= 0 || diff
.tv_nsec
> 200000000)
239 printf ("dead - after %lu.%.9lu outside reasonable range\n",
240 diff
.tv_sec
, diff
.tv_nsec
);
244 /* Now reap the child and verify that its clock is no longer valid. */
247 if (waitpid (child
, &x
, 0) != child
)
254 if (clock_gettime (child_clock
, &dead
) == 0)
256 printf ("clock_gettime on reaped PID %d clock %lx => %lu%.9lu\n",
257 child
, (unsigned long int) child_clock
,
258 dead
.tv_sec
, dead
.tv_nsec
);
265 printf ("clock_gettime on reaped PID %d clock %lx => %s\n",
266 child
, (unsigned long int) child_clock
, strerror (errno
));
269 if (clock_getres (child_clock
, &dead
) == 0)
271 printf ("clock_getres on reaped PID %d clock %lx => %lu%.9lu\n",
272 child
, (unsigned long int) child_clock
,
273 dead
.tv_sec
, dead
.tv_nsec
);
280 printf ("clock_getres on reaped PID %d clock %lx => %s\n",
281 child
, (unsigned long int) child_clock
, strerror (errno
));
288 if (kill (child
, SIGKILL
) != 0 && errno
!= ESRCH
)
294 if (waitpid (child
, &x
, 0) != child
&& errno
!= ECHILD
)
306 #define TEST_FUNCTION do_test ()
307 #include "../test-skeleton.c"