diff options
| author | Mike Makonnen <mtm@FreeBSD.org> | 2004-10-08 14:48:02 +0000 |
|---|---|---|
| committer | Mike Makonnen <mtm@FreeBSD.org> | 2004-10-08 14:48:02 +0000 |
| commit | 4cdb7f14ed9055b34cc20f33cfa7e258f42ccc97 (patch) | |
| tree | cf269cd40523e3de7d5f3da2d2d4063b2962a094 /lib | |
| parent | d7052481cd47d974b2654b98928ec9ab53afe2f3 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libthr/thread/thr_exit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libthr/thread/thr_exit.c b/lib/libthr/thread/thr_exit.c index 3ee5fa5b5424c..6a4568788f325 100644 --- a/lib/libthr/thread/thr_exit.c +++ b/lib/libthr/thread/thr_exit.c @@ -42,9 +42,6 @@ __weak_reference(_pthread_exit, pthread_exit); -/* thr_exit() */ -extern int _thr_exit(long *state); - static void deadlist_free_threads(); void @@ -180,7 +177,7 @@ _pthread_exit(void *status) * thread, which we can't be because we've already checked * for that. */ - _thr_exit((long *)&curthread->isdead); + thr_exit((long *)&curthread->isdead); /* This point should not be reached. */ PANIC("Dead thread has resumed"); |
