diff options
| author | David Xu <davidxu@FreeBSD.org> | 2007-12-20 04:40:12 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2007-12-20 04:40:12 +0000 |
| commit | 9ba01c866be4e3fcb530b6704b5a7f810dbee2a5 (patch) | |
| tree | c5370c29d4c90596896674b4b195450e9cd9e5e0 | |
| parent | 06c8eb55ceb11e005252eb355d52371d2d0c3154 (diff) | |
Notes
| -rw-r--r-- | lib/libthr/thread/thr_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_exit.c b/lib/libthr/thread/thr_exit.c index 1e533f5b2ef8..47eb0d217789 100644 --- a/lib/libthr/thread/thr_exit.c +++ b/lib/libthr/thread/thr_exit.c @@ -100,7 +100,7 @@ _pthread_exit(void *status) /* Save the return value: */ curthread->ret = status; while (curthread->cleanup != NULL) { - pthread_cleanup_pop(1); + _pthread_cleanup_pop(1); } /* Check if there is thread specific data: */ |
