1 #define __PTHREAD_EXTRA_INTERNAL
4 #include <pthread_extra.h>
8 #include <sys/resource.h>
12 //#include <sys/time.h>
14 void pthread_pause_handler() {
15 //Do nothing when there are more signals pending (to cleanup the queue)
18 if(sigismember(&pending
, PTHREAD_XSIG_STOP
)) return;
20 //Keep waiting for signals until we are supposed to be running
23 sigdelset(&sigset
, PTHREAD_XSIG_STOP
);
24 if(!pthread_user_data_internal(pthread_self())->running
) {
29 void pthread_pause_enable() {
30 //Add thread to internal registry
31 pthread_user_data_internal(pthread_self());
33 //Nesting signals too deep is not good for stack
34 //You can get runtime stats using following command:
35 //grep -i sig /proc/$(pgrep binary)/status
36 struct rlimit sigq
= {.rlim_cur
= 32, .rlim_max
=32};
37 setrlimit(RLIMIT_SIGPENDING
, &sigq
);
39 //Setup signal handler
40 signal(PTHREAD_XSIG_STOP
, pthread_pause_handler
);
45 sigaddset(&sigset
, PTHREAD_XSIG_STOP
);
46 pthread_sigmask(SIG_UNBLOCK
, &sigset
, NULL
);
49 void pthread_pause_disable() {
50 //Add thread to internal registry
51 pthread_user_data_internal(pthread_self());
56 sigaddset(&sigset
, PTHREAD_XSIG_STOP
);
57 pthread_sigmask(SIG_BLOCK
, &sigset
, NULL
);
60 int pthread_pause_reschedule(pthread_t thread
) {
61 //Send signal to initiate pause handler
62 while(pthread_kill(thread
, PTHREAD_XSIG_STOP
) == EAGAIN
) usleep(1000);
66 int pthread_pause(pthread_t thread
) {
67 //Set thread as paused and notify it via signal (wait when queue full)
68 pthread_user_data_internal(thread
)->running
= 0;
69 pthread_pause_reschedule(thread
);
73 int pthread_unpause(pthread_t thread
) {
74 //Set thread as running and notify it via signal (wait when queue full)
75 pthread_user_data_internal(thread
)->running
= 1;
76 pthread_pause_reschedule(thread
);
82 // Wrappers ///////////////////////////////////////////////////////////
85 typedef struct pthread_extra_wrapper_t
{
86 void *(*start_routine
)(void *);
88 } pthread_extra_wrapper_t
;
90 void *pthread_extra_thread_wrapper(void *arg
) {
91 pthread_extra_wrapper_t task
= *((pthread_extra_wrapper_t
*)arg
);
94 //Register new thread to user data structure
95 pthread_user_data_internal(pthread_self());
97 //TODO: user_data should do this automaticaly?
98 pthread_cleanup_push(pthread_user_data_cleanup
, (void *)pthread_self());
100 //Check if we should be running according to pthread_pause sub-scheduler
101 pthread_pause_reschedule(pthread_self());
103 return task
.start_routine(task
.arg
);
105 pthread_cleanup_pop(1); //Needed by pthread_cleanup_push() macro
108 int pthread_extra_create(pthread_t
*restrict thread
,
109 const pthread_attr_t
*restrict attr
,
110 void *(*start_routine
)(void *),
111 void *restrict arg
) {
113 pthread_extra_wrapper_t
*task
= malloc(sizeof(pthread_extra_wrapper_t
));
114 assert(task
!= NULL
);
115 task
->start_routine
=start_routine
;
117 return pthread_create(thread
, attr
, pthread_extra_thread_wrapper
, task
);