summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads.old/semaphore.c
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2008-12-11 14:58:31 +0000
committerCarmelo Amoroso <carmelo.amoroso@st.com>2008-12-11 14:58:31 +0000
commit187bb6ed7e2969ed316edaf8bae686a0c613dbc5 (patch)
treedde5efeae5a3b94fb225537a2c80e2388eff62de /libpthread/linuxthreads.old/semaphore.c
parent4b40b8791d9d8f785238d963fe5c094e1af30d63 (diff)
downloaduClibc-alpine-187bb6ed7e2969ed316edaf8bae686a0c613dbc5.tar.bz2
uClibc-alpine-187bb6ed7e2969ed316edaf8bae686a0c613dbc5.tar.xz
Synch with trunk @ 24379
Step 21: merge linuxthreads.old directory
Diffstat (limited to 'libpthread/linuxthreads.old/semaphore.c')
-rw-r--r--libpthread/linuxthreads.old/semaphore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/semaphore.c b/libpthread/linuxthreads.old/semaphore.c
index 7502b6e78..c892a601b 100644
--- a/libpthread/linuxthreads.old/semaphore.c
+++ b/libpthread/linuxthreads.old/semaphore.c
@@ -172,7 +172,7 @@ int __new_sem_post(sem_t * sem)
}
request.req_kind = REQ_POST;
request.req_args.post = sem;
- TEMP_FAILURE_RETRY(__libc_write(__pthread_manager_request,
+ TEMP_FAILURE_RETRY(write(__pthread_manager_request,
(char *) &request, sizeof(request)));
}
return 0;