diff options
author | bje <bje> | 1998-07-12 11:17:20 +0000 |
---|---|---|
committer | bje <bje> | 1998-07-12 11:17:20 +0000 |
commit | a0fa92a6b0b850a158052b40b4888c504a65e3f6 (patch) | |
tree | bddeb1c5318990d83a2f74d78c73963f29b3050f /implement.h | |
parent | f2da9e69a05ed8e7b2482987a4106d7d12b6b7e2 (diff) |
1998-07-12 Ben Elliston <bje@cygnus.com>
* implement.h (_pthread_mutex_attr_t): Define this implementation
internal type. Application programmers only see a mutex attribute
object as a void pointer.
Diffstat (limited to 'implement.h')
-rw-r--r-- | implement.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/implement.h b/implement.h index 0d21ff9..3504537 100644 --- a/implement.h +++ b/implement.h @@ -10,3 +10,8 @@ #define PTHREAD_THREADS_MAX 256; extern DWORD pthreads_thread_count; + +typedef struct { + int proc_shared; +} _pthread_mutexattr_t; + |