diff options
author | bje <bje> | 1998-07-24 12:49:41 +0000 |
---|---|---|
committer | bje <bje> | 1998-07-24 12:49:41 +0000 |
commit | 8681906bbed569f67d74d01ee0b3686d1da1b3f3 (patch) | |
tree | 792525ca0a3d4c73d27949d08d3d8a7f84a92d83 /pthread.h | |
parent | b0196a22cacbfbcbc8aaa4905e6cea11d446c6de (diff) |
1998-07-24 Ben Elliston <bje@cygnus.com>
* pthread.h (pthread_condattr_t): Rename dummy structure member.
(pthread_mutexattr_t): Likewise.
Diffstat (limited to 'pthread.h')
-rw-r--r-- | pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |