From f0a3d118ea5b5c4e945941cd7b1bb243f0878e43 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 26 Apr 2011 23:47:17 +0200 Subject: NPTL: rename __new_sem_* to sem_* Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c') diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c index 3cf1d9a8a..dede93e50 100644 --- a/libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c +++ b/libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c @@ -26,7 +26,7 @@ int -__new_sem_trywait (sem_t *sem) +sem_trywait (sem_t *sem) { int *futex = (int *) sem; int val; @@ -41,4 +41,3 @@ __new_sem_trywait (sem_t *sem) __set_errno (EAGAIN); return -1; } -weak_alias(__new_sem_trywait, sem_trywait) -- cgit v1.2.3