A couple of new functions have been added to the pthread_functions
structure.
diff --git a/scheduler/pthread.c b/scheduler/pthread.c
index 72126c0..134fe55 100644
--- a/scheduler/pthread.c
+++ b/scheduler/pthread.c
@@ -255,6 +255,8 @@
int (*ptr_pthread_sigwait) (const sigset_t *set, int *sig);
int (*ptr_pthread_raise) (int sig);
int (*ptr___pthread_cond_timedwait) (pthread_cond_t *, pthread_mutex_t *, const struct timespec *);
+ void (*ptr__pthread_cleanup_push) (struct _pthread_cleanup_buffer * buffer, void (*routine)(void *), void * arg);
+ void (*ptr__pthread_cleanup_pop) (struct _pthread_cleanup_buffer * buffer, int execute);
};
static pid_t (*libc_fork)(void);
@@ -810,7 +812,9 @@
NULL, /* ptr_pthread_sigaction */
NULL, /* ptr_pthread_sigwait */
NULL, /* ptr_pthread_raise */
- __pthread_cond_timedwait /* ptr___pthread_cond_timedwait */
+ __pthread_cond_timedwait, /* ptr___pthread_cond_timedwait */
+ _pthread_cleanup_push, /* ptr__pthread_cleanup_push */
+ _pthread_cleanup_pop /* ptr__pthread_cleanup_pop */
};
#endif /* __GLIBC__ || __FREEBSD__ */