summaryrefslogtreecommitdiffstats
path: root/src/libthread/Linux.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-28 22:36:24 +0000
committerrsc <devnull@localhost>2004-12-28 22:36:24 +0000
commit1d2533d0101fd1721ab26837485c0b094205c3bd (patch)
tree5f363ff675fa16e800333f2e9ac81e4ecc3636d3 /src/libthread/Linux.c
parent07bda1263eb4e319e9d8b278e81d75f67a417b66 (diff)
downloadplan9port-1d2533d0101fd1721ab26837485c0b094205c3bd.tar.gz
plan9port-1d2533d0101fd1721ab26837485c0b094205c3bd.zip
restore old plan 9 property that when the
last thread exits the main proc, the remaining program ends up in the background and the program appears to have exited.
Diffstat (limited to 'src/libthread/Linux.c')
-rw-r--r--src/libthread/Linux.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libthread/Linux.c b/src/libthread/Linux.c
index 103cb428..3d31a4a9 100644
--- a/src/libthread/Linux.c
+++ b/src/libthread/Linux.c
@@ -348,3 +348,8 @@ _pthreadinit(void)
signal(SIGUSR2, sigusr2handler);
}
+void
+_threadpexit(void)
+{
+ _exit(0);
+}