Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* tst-clock1.c: Change #ifdef to #if defined.
	* tst-clock2.c: Likewise.
	* tst-cond11.c: Likewise.

2004-10-05  Jakub Jelinek  <jakub@redhat.com>
  • Loading branch information
Ulrich Drepper committed Oct 6, 2004
1 parent b85a0f3 commit f38a308
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion nptl/tst-clock1.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion nptl/tst-clock2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion nptl/tst-cond11.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit f38a308

Please sign in to comment.