diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-06 18:09:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-06 18:09:57 +0000 |
commit | c56da3a39b4da2cd4226e3ad937d48cc4c988149 (patch) | |
tree | b306f712bb8ae2c32916da9a9804fa2b36e35912 /nptl/tst-clock2.c | |
parent | 6bdd38ba719f92869fd7db62ad5d9368ad1b9e26 (diff) | |
download | glibc-c56da3a39b4da2cd4226e3ad937d48cc4c988149.zip glibc-c56da3a39b4da2cd4226e3ad937d48cc4c988149.tar.gz glibc-c56da3a39b4da2cd4226e3ad937d48cc4c988149.tar.bz2 |
Update.
* posix/tst-getaddrinfo2.c: Include stdlib.h and string.h.
(do_test): Use %p instead of 0x%08X to print a pointer.
* malloc/malloc.c: Include stdio-common/_itoa.h.
Diffstat (limited to 'nptl/tst-clock2.c')
-rw-r--r-- | nptl/tst-clock2.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nptl/tst-clock2.c b/nptl/tst-clock2.c index fd216b2..bca4095 100644 --- a/nptl/tst-clock2.c +++ b/nptl/tst-clock2.c @@ -58,6 +58,14 @@ do_test (void) #if defined _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0 # define N 10 +# if _POSIX_THREAD_CPUTIME == 0 + if (sysconf (_SC_THREAD_CPUTIME) < 0) + { + puts ("_POSIX_THREAD_CPUTIME option not available"); + return 0; + } +# endif + if (pthread_barrier_init (&b2, NULL, 2) != 0 || pthread_barrier_init (&bN, NULL, N + 1) != 0) { |