summaryrefslogtreecommitdiffstats
path: root/lib/libkse/thread/thr_clean.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libkse/thread/thr_clean.c')
-rw-r--r--lib/libkse/thread/thr_clean.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/libkse/thread/thr_clean.c b/lib/libkse/thread/thr_clean.c
index bba5500..9ce3fc2 100644
--- a/lib/libkse/thread/thr_clean.c
+++ b/lib/libkse/thread/thr_clean.c
@@ -34,31 +34,35 @@
#include <signal.h>
#include <errno.h>
#include <stdlib.h>
-#ifdef _THREAD_SAFE
#include <pthread.h>
#include "pthread_private.h"
+#pragma weak pthread_cleanup_push=_pthread_cleanup_push
+#pragma weak pthread_cleanup_pop=_pthread_cleanup_pop
+
void
-pthread_cleanup_push(void (*routine) (void *), void *routine_arg)
+_pthread_cleanup_push(void (*routine) (void *), void *routine_arg)
{
+ struct pthread *curthread = _get_curthread();
struct pthread_cleanup *new;
if ((new = (struct pthread_cleanup *) malloc(sizeof(struct pthread_cleanup))) != NULL) {
new->routine = routine;
new->routine_arg = routine_arg;
- new->next = _thread_run->cleanup;
+ new->next = curthread->cleanup;
- _thread_run->cleanup = new;
+ curthread->cleanup = new;
}
}
void
-pthread_cleanup_pop(int execute)
+_pthread_cleanup_pop(int execute)
{
+ struct pthread *curthread = _get_curthread();
struct pthread_cleanup *old;
- if ((old = _thread_run->cleanup) != NULL) {
- _thread_run->cleanup = old->next;
+ if ((old = curthread->cleanup) != NULL) {
+ curthread->cleanup = old->next;
if (execute) {
old->routine(old->routine_arg);
}
@@ -66,4 +70,3 @@ pthread_cleanup_pop(int execute)
}
}
-#endif
OpenPOWER on IntegriCloud