diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pthread.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +1998-07-24 Ben Elliston <bje@cygnus.com> + + * pthread.h (pthread_condattr_t): Rename dummy structure member. + (pthread_mutexattr_t): Likewise. + Fri Jul 24 21:13:55 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au> * cancel.c (pthread_cancel): Implement. @@ -125,8 +125,8 @@ typedef struct { pthread_mutex_t waiters_count_lock; } pthread_cond_t; -typedef struct { void * ptr; } pthread_condattr_t; -typedef struct { void * ptr; } pthread_mutexattr_t; +typedef struct { void * dummy; } pthread_condattr_t; +typedef struct { void * dummy; } pthread_mutexattr_t; typedef struct { unsigned short flag; |