]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 6 Oct 2004 08:01:28 +0000 (08:01 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 6 Oct 2004 08:01:28 +0000 (08:01 +0000)
* tst-clock1.c: Change #ifdef to #if defined.
* tst-clock2.c: Likewise.
* tst-cond11.c: Likewise.

2004-10-05  Jakub Jelinek  <jakub@redhat.com>

nptl/ChangeLog
nptl/tst-clock1.c
nptl/tst-clock2.c
nptl/tst-cond11.c

index 1cbe0ee02b2a920651603bef025ac9b531dcfb79..0ddc0d0b083f3b2c8a2e40e4f12f7374b642ac16 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-05  Jakub Jelinek  <jakub@redhat.com>
+
+       * tst-clock1.c: Change #ifdef to #if defined.
+       * tst-clock2.c: Likewise.
+       * tst-cond11.c: Likewise.
+
 2004-10-05  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/pthread/timer_create.c (timer_create): Use
index cba197943a49537b9e1e300cca1656aab75514c1..0848d770195c5b28a4c2a22b56e5b6d7402b6402 100644 (file)
@@ -27,7 +27,7 @@
 int
 do_test (void)
 {
-#ifdef _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0
+#if defined _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0
   clockid_t cl;
   /* This is really only a linking-test here.  */
   int e = pthread_getcpuclockid (pthread_self (), &cl);
index 2ea2a529aadbe5cb38a2347a3fa3851c6fd40ac1..fd216b2ba14cf5ff4aa7cf7b4a12a12ad361c01e 100644 (file)
@@ -25,7 +25,7 @@
 #include <unistd.h>
 
 
-#ifdef _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0
+#if defined _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0
 static pthread_barrier_t b2;
 static pthread_barrier_t bN;
 
index 90a3e15868d0cf6291355ea401ffd886469767a1..0de4d56137e7e70e4199e2383910593a94413cd7 100644 (file)
@@ -24,7 +24,7 @@
 #include <unistd.h>
 
 
-#ifdef _POSIX_CLOCK_SELECTION && _POSIX_CLOCK_SELECTION >= 0
+#if defined _POSIX_CLOCK_SELECTION && _POSIX_CLOCK_SELECTION >= 0
 static int
 run_test (clockid_t cl)
 {