aboutsummaryrefslogtreecommitdiff
path: root/rt/tst-cputimer1.c
diff options
context:
space:
mode:
Diffstat (limited to 'rt/tst-cputimer1.c')
-rw-r--r--rt/tst-cputimer1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/rt/tst-cputimer1.c b/rt/tst-cputimer1.c
index 8f5dd76..18d8b19 100644
--- a/rt/tst-cputimer1.c
+++ b/rt/tst-cputimer1.c
@@ -11,6 +11,8 @@
#include <time.h>
#include <pthread.h>
+#include <support/xunistd.h>
+
#define TEST_CLOCK CLOCK_PROCESS_CPUTIME_ID
#define TEST_CLOCK_MISSING(clock) \
(setup_test () ? "process CPU clock timer support" : NULL)
@@ -29,7 +31,7 @@ chew_cpu (void *arg)
for (int i = 0; i < 100; ++i)
for (size_t j = 0; j < sizeof buf; ++j)
buf[j] = 0xbb;
- write (nullfd, (char *) buf, sizeof buf);
+ xwrite (nullfd, (char *) buf, sizeof buf);
close (nullfd);
}