From 7dcc4ea070f087abcb1915d1976f30915e6606ad Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 28 Jan 2001 16:39:07 +0000 Subject: Adjust for last change. 2001-01-28 Andreas Jaeger * oldsemaphore.c (__old_sem_init): Adjust for last change. * sysdeps/pthread/bits/libc-lock.h: Likewise. * spinlock.c: Likewise. --- linuxthreads/oldsemaphore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linuxthreads/oldsemaphore.c') 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; } -- cgit v1.2.3