summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_clean.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1997-02-05 23:26:09 +0000
committerJulian Elischer <julian@FreeBSD.org>1997-02-05 23:26:09 +0000
commitc840cec7c5df4547d37d9ca025553099b834c1aa (patch)
treeb2e6d3017e236268263978b585f2150cd10b1689 /lib/libpthread/thread/thr_clean.c
parent3b576b3e5eac153732d10d222cc023a02adc3db7 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_clean.c')
-rw-r--r--lib/libpthread/thread/thr_clean.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/libpthread/thread/thr_clean.c b/lib/libpthread/thread/thr_clean.c
index 99893f671b1d..9319f85efbea 100644
--- a/lib/libpthread/thread/thr_clean.c
+++ b/lib/libpthread/thread/thr_clean.c
@@ -37,11 +37,10 @@
#include <pthread.h>
#include "pthread_private.h"
-int
-_thread_cleanup_push(void (*routine) (void *), void *routine_arg)
+void
+pthread_cleanup_push(void (*routine) (void *), void *routine_arg)
{
struct pthread_cleanup *new;
- int ret;
if ((new = (struct pthread_cleanup *) malloc(sizeof(struct pthread_cleanup))) != NULL) {
new->routine = routine;
@@ -49,15 +48,11 @@ _thread_cleanup_push(void (*routine) (void *), void *routine_arg)
new->next = _thread_run->cleanup;
_thread_run->cleanup = new;
- ret = 0;
- } else {
- ret = ENOMEM;
}
- return (ret);
}
void
-_thread_cleanup_pop(int execute)
+pthread_cleanup_pop(int execute)
{
struct pthread_cleanup *old;