aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/exit-getpid.ch
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/exit-getpid.ch')
-rw-r--r--src/libthread/exit-getpid.ch25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/libthread/exit-getpid.ch b/src/libthread/exit-getpid.ch
deleted file mode 100644
index e2580ac7..00000000
--- a/src/libthread/exit-getpid.ch
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Implement threadexitsall by sending a signal to every proc.
- *
- * To be included from another C file (e.g., Linux-clone.c).
- */
-
-void
-_threadexitallproc(char *exitstr)
-{
- Proc *p;
- int mypid;
-
- mypid = getpid();
- lock(&_threadpq.lock);
- for(p=_threadpq.head; p; p=p->next)
- if(p->pid > 1 && p->pid != mypid)
- kill(p->pid, SIGUSR2);
- exits(exitstr);
-}
-
-void
-_threadexitproc(char *exitstr)
-{
- _exits(exitstr);
-}