about summary refs log tree commit diff
path: root/linuxthreads/oldsemaphore.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-01-28 16:39:07 +0000
committerAndreas Jaeger <aj@suse.de>2001-01-28 16:39:07 +0000
commit7dcc4ea070f087abcb1915d1976f30915e6606ad (patch)
tree617202d87b629d7098c1ac4a17c541ee74fffd39 /linuxthreads/oldsemaphore.c
parent48ba4bd227be1457f015421efec6dc57bc014a6a (diff)
downloadglibc-7dcc4ea070f087abcb1915d1976f30915e6606ad.tar.gz
glibc-7dcc4ea070f087abcb1915d1976f30915e6606ad.tar.xz
glibc-7dcc4ea070f087abcb1915d1976f30915e6606ad.zip
Adjust for last change.
2001-01-28  Andreas Jaeger  <aj@suse.de>

	* oldsemaphore.c (__old_sem_init): Adjust for last change.
	* sysdeps/pthread/bits/libc-lock.h: Likewise.
	* spinlock.c: Likewise.
Diffstat (limited to 'linuxthreads/oldsemaphore.c')
-rw-r--r--linuxthreads/oldsemaphore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/oldsemaphore.c b/linuxthreads/oldsemaphore.c
index 82cd63797f..da5272cd24 100644
--- a/linuxthreads/oldsemaphore.c
+++ b/linuxthreads/oldsemaphore.c
@@ -73,7 +73,7 @@ int __old_sem_init(old_sem_t *sem, int pshared, unsigned int value)
 	errno = ENOSYS;
 	return -1;
     }
-  sem->sem_spinlock = LT_SPINLOCK_INIT;
+  sem->sem_spinlock = __LT_SPINLOCK_INIT;
   sem->sem_status = ((long)value << 1) + 1;
   return 0;
 }