From 8681906bbed569f67d74d01ee0b3686d1da1b3f3 Mon Sep 17 00:00:00 2001 From: bje Date: Fri, 24 Jul 1998 12:49:41 +0000 Subject: 1998-07-24 Ben Elliston * pthread.h (pthread_condattr_t): Rename dummy structure member. (pthread_mutexattr_t): Likewise. --- ChangeLog | 5 +++++ pthread.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 47e8acf..4651477 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-07-24 Ben Elliston + + * pthread.h (pthread_condattr_t): Rename dummy structure member. + (pthread_mutexattr_t): Likewise. + Fri Jul 24 21:13:55 1998 Ross Johnson * cancel.c (pthread_cancel): Implement. diff --git a/pthread.h b/pthread.h index de84697..b3d76e9 100644 --- a/pthread.h +++ b/pthread.h @@ -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; -- cgit v1.2.3