From c70ca1fa69c9a95108664b4132b7188a686cc9e4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 27 Oct 1998 14:19:07 +0000 Subject: Update. * sysdeps/unix/sysv/linux/powerpc/pread.c: Do not use the i386 version. Instead call the system call wrapper function using an 64bit argument. * sysdeps/unix/sysv/linux/powerpc/pread64.c: Likewise. * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Likewise. * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise. --- linuxthreads/spinlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linuxthreads/spinlock.h') diff --git a/linuxthreads/spinlock.h b/linuxthreads/spinlock.h index d21a967202..a6f682cb69 100644 --- a/linuxthreads/spinlock.h +++ b/linuxthreads/spinlock.h @@ -20,8 +20,8 @@ extern void __pthread_unlock(struct _pthread_fastlock * lock); static inline void __pthread_init_lock(struct _pthread_fastlock * lock) { - lock->status = 0; - lock->spinlock = 0; + lock->__status = 0; + lock->__spinlock = 0; } #define LOCK_INITIALIZER {0, 0} -- cgit v1.2.3