about summary refs log tree commit diff
path: root/src/thread/synccall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/synccall.c')
-rw-r--r--src/thread/synccall.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/thread/synccall.c b/src/thread/synccall.c
index 2cd25e4b..1520b3b4 100644
--- a/src/thread/synccall.c
+++ b/src/thread/synccall.c
@@ -47,14 +47,6 @@ static void handler(int sig, siginfo_t *si, void *ctx)
 	errno = old_errno;
 }
 
-void __synccall_wait()
-{
-	struct chain *ch = cur;
-	sem_post(&ch->sem2);
-	while (sem_wait(&ch->sem));
-	sem_post(&ch->sem);
-}
-
 void __synccall(void (*func)(void *), void *ctx)
 {
 	pthread_t self;