summaryrefslogtreecommitdiff
path: root/pthread.h
diff options
context:
space:
mode:
authorrpj <rpj>2001-07-06 18:16:50 +0000
committerrpj <rpj>2001-07-06 18:16:50 +0000
commit06974b302eaf8f08382e6e786aea53f420c12222 (patch)
tree1b574a41dacc634a105a74127b2dac30a60bda13 /pthread.h
parent7a3104dc65b469cbb9c88b6a9c7b7bea4126a43e (diff)
Spinlocks and barriers fixed and working. Beta level.
* spin.c: Revamped and working; included static initialiser. * barrier.c: Likewise. * condvar.c: Macro constant change; inline auto init routine. * mutex.c: Likewise. * rwlock.c: Likewise. * private.c: Add support for spinlock initialiser. * global.c: Likewise. * implement.h: Likewise. * pthread.h (PTHREAD_SPINLOCK_INITIALIZER): Fix typo. tests/ChangeLog: * spin3.c: Changed test and fixed. * spin4.c: Fixed. * barrier3.c: Fixed. * barrier4.c: Fixed.
Diffstat (limited to 'pthread.h')
-rw-r--r--pthread.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/pthread.h b/pthread.h
index 16e514d..0122b7c 100644
--- a/pthread.h
+++ b/pthread.h
@@ -457,8 +457,7 @@ struct pthread_once_t_
#define PTHREAD_RWLOCK_INITIALIZER ((pthread_rwlock_t) -1)
-#define PTHREAD_SPINLOCK_INITIALIZER {1}
-
+#define PTHREAD_SPINLOCK_INITIALIZER ((pthread_spinlock_t) -1)
enum
{