Priprava na semafor, zatim obsahuje ZAVAZNY DEADLOCK
[mirrors/Programs.git] / c / pthread_extra / pthread_pause.c
CommitLineData
88342701
TM
1#define __PTHREAD_EXTRA_INTERNAL
2
a8e71e8f
TM
3#include <pthread.h>
4#include <pthread_extra.h>
5#include <signal.h>
3109d0d1 6#include <semaphore.h>
88342701
TM
7#include <errno.h>
8#include <unistd.h>
9#include <sys/resource.h>
dec91d37 10//#include <sys/siginfo.h>
88342701 11//#include <stdio.h>
7e0f3dba
TM
12#include <stdlib.h>
13#include <assert.h>
88342701 14//#include <sys/time.h>
a8e71e8f 15
3109d0d1
TM
16//Mutex that ensures proper serialization of (un)pause calls
17//pthread_mutex_t pthread_pause_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
18
19//Semaphore that ensures proper serialization of (un)pause signals
20sem_t pthread_pause_sem;
21//Once control to init the semaphore (and possibly other stuff)
22pthread_once_t pthread_pause_once_ctrl = PTHREAD_ONCE_INIT;
23void pthread_pause_once(void) {
24 sem_init(&pthread_pause_sem, 0, 1);
25}
26void pthread_pause_init() { pthread_once(&pthread_pause_once_ctrl, &pthread_pause_once); }
27
70bd1c94 28///When this variable is nonzero, only referenced thread is allowed to run
3109d0d1 29///Access has to be protected by pthread_user_data_lock() and pthread_pause_sem;
9b4be8e8 30pthread_t pthread_pause_holder = PTHREAD_XNULL;
70bd1c94 31
dec91d37
TM
32void pthread_pause_handler(const int signal, siginfo_t *info, void *ptr) {
33 (void)signal; (void)info; (void)ptr;
70bd1c94
TM
34 int run = info->si_value.sival_int;
35 //(void)td;
dec91d37 36
3109d0d1
TM
37 //Post semaphore to confirm that signal is handled
38 sem_post(&pthread_pause_sem);
88342701
TM
39
40 //Keep waiting for signals until we are supposed to be running
70bd1c94 41 if(!run) {
3109d0d1
TM
42 sigset_t sigset;
43 sigfillset(&sigset);
44 sigdelset(&sigset, PTHREAD_XSIG_STOP);
88342701
TM
45 sigsuspend(&sigset);
46 }
a8e71e8f
TM
47}
48
49void pthread_pause_enable() {
ee099ba7 50 //Add thread to internal registry
238a7032 51 //pthread_user_data_internal(pthread_self());
ee099ba7 52
88342701
TM
53 //Nesting signals too deep is not good for stack
54 //You can get runtime stats using following command:
55 //grep -i sig /proc/$(pgrep binary)/status
3109d0d1
TM
56 //struct rlimit sigq = {.rlim_cur = 32, .rlim_max=32};
57 //setrlimit(RLIMIT_SIGPENDING, &sigq);
58
59 pthread_pause_init(); //Make sure semaphore is init'd
88342701 60
dec91d37 61 //Prepare signal mask
88342701
TM
62 sigset_t sigset;
63 sigemptyset(&sigset);
64 sigaddset(&sigset, PTHREAD_XSIG_STOP);
dec91d37
TM
65
66 //Setup signal handler
67 //signal(PTHREAD_XSIG_STOP, pthread_pause_handler);
68 const struct sigaction pause_sa = {
69 .sa_sigaction = pthread_pause_handler,
70 .sa_mask = sigset,
80c01dc9 71 .sa_flags = SA_SIGINFO | SA_RESTART,
dec91d37
TM
72 .sa_restorer = NULL
73 };
74 sigaction(PTHREAD_XSIG_STOP, &pause_sa, NULL);
75
76 //Unblock signal
88342701
TM
77 pthread_sigmask(SIG_UNBLOCK, &sigset, NULL);
78}
79
80void pthread_pause_disable() {
ee099ba7 81 //Add thread to internal registry
238a7032 82 //pthread_user_data_internal(pthread_self());
ee099ba7 83
3109d0d1
TM
84 pthread_pause_init(); //Make sure semaphore is init'd
85
88342701
TM
86 //Block signal
87 sigset_t sigset;
88 sigemptyset(&sigset);
89 sigaddset(&sigset, PTHREAD_XSIG_STOP);
3109d0d1
TM
90
91 //Make sure all signals are dispatched before we block them
92 sem_wait(&pthread_pause_sem);
88342701 93 pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3109d0d1 94 sem_post(&pthread_pause_sem);
88342701
TM
95}
96
70bd1c94 97/*
7e0f3dba
TM
98int pthread_pause_reschedule(pthread_t thread) {
99 //Send signal to initiate pause handler
dec91d37 100 //printf("SND: %p\n", (void *)pthread_user_data_internal(thread));
86166123 101 //while(pthread_kill(thread, PTHREAD_XSIG_STOP) == EAGAIN) usleep(1000);
dec91d37
TM
102 while(pthread_sigqueue(thread, PTHREAD_XSIG_STOP,
103 (const union sigval){.sival_ptr=pthread_user_data_internal(thread)}
104 ) == EAGAIN) usleep(1000);
7e0f3dba
TM
105 return 0;
106}
70bd1c94
TM
107*/
108
109int pthread_pause_reschedule(pthread_t thread) {
3109d0d1
TM
110 //Decide if the thread should run and signal it
111
112 //Wait for semaphore which means signal queue is empty
113 pthread_pause_init(); //Make sure semaphore is init'd
114 sem_wait(&pthread_pause_sem);
115
116 //Only call this if you already acquired pthread_pause_sem semaphore!!!!
117 //Otherwise call pthread_pause_reschedule()
70bd1c94
TM
118
119 pthread_user_data_lock();
120 //Check if thread has running flag
121 int run = (pthread_user_data_internal(thread)->running);
122 //Check if privileged (single thread) mode is active
9b4be8e8 123 if((pthread_pause_holder != PTHREAD_XNULL) && !pthread_equal(pthread_pause_holder, thread)) {
70bd1c94
TM
124 run = 0;
125 }
126 pthread_user_data_unlock();
127
128 //Send signal to initiate pause handler (keep trying while SigQueue is full)
129 //while(pthread_kill(thread, PTHREAD_XSIG_STOP) == EAGAIN) usleep(1000);
130 while(pthread_sigqueue(thread, PTHREAD_XSIG_STOP,
131 (const union sigval){.sival_int=run}
132 ) == EAGAIN) usleep(1000);
3109d0d1
TM
133
134 //Wait for signal to be delivered
135 sem_wait(&pthread_pause_sem);
136 sem_post(&pthread_pause_sem);
137
70bd1c94
TM
138 return 0;
139}
7e0f3dba 140
8df6da88
TM
141int pthread_extra_yield() {
142 //Yield to both schedulers
143 pthread_pause_reschedule(pthread_self());
144 return pthread_yield();
145}
146
88342701
TM
147int pthread_pause(pthread_t thread) {
148 //Set thread as paused and notify it via signal (wait when queue full)
70bd1c94 149 pthread_user_data_lock();
88342701 150 pthread_user_data_internal(thread)->running = 0;
7e0f3dba 151 pthread_pause_reschedule(thread);
3109d0d1 152 pthread_user_data_unlock();
88342701
TM
153 return 0;
154}
155
156int pthread_unpause(pthread_t thread) {
157 //Set thread as running and notify it via signal (wait when queue full)
70bd1c94 158 pthread_user_data_lock();
88342701 159 pthread_user_data_internal(thread)->running = 1;
7e0f3dba 160 pthread_pause_reschedule(thread);
3109d0d1 161 pthread_user_data_unlock();
88342701 162 return 0;
a8e71e8f 163}
7e0f3dba 164
70bd1c94
TM
165int pthread_pause_all() {
166 pthread_user_data_lock();
9b4be8e8 167 if(pthread_pause_holder!=PTHREAD_XNULL) assert(pthread_equal(pthread_pause_holder, pthread_self()));
70bd1c94 168 pthread_pause_holder = pthread_self();
9b4be8e8 169 pthread_user_data_internal_iterate(&pthread_pause_reschedule, NULL);
3109d0d1 170 pthread_user_data_unlock();
70bd1c94
TM
171 return 0;
172}
173
174int pthread_unpause_all() {
175 pthread_user_data_lock();
9b4be8e8
TM
176 if(pthread_pause_holder!=PTHREAD_XNULL) assert(pthread_equal(pthread_pause_holder, pthread_self()));
177 pthread_pause_holder = PTHREAD_XNULL;
9b4be8e8 178 pthread_user_data_internal_iterate(&pthread_pause_reschedule, NULL);
3109d0d1 179 pthread_user_data_unlock();
70bd1c94
TM
180 return 0;
181}
7e0f3dba
TM
182
183
184// Wrappers ///////////////////////////////////////////////////////////
185
186
187typedef struct pthread_extra_wrapper_t {
188 void *(*start_routine)(void *);
189 void *restrict arg;
190} pthread_extra_wrapper_t;
191
192void *pthread_extra_thread_wrapper(void *arg) {
193 pthread_extra_wrapper_t task = *((pthread_extra_wrapper_t*)arg);
194 free(arg);
195
196 //Register new thread to user data structure
197 pthread_user_data_internal(pthread_self());
198
199 //TODO: user_data should do this automaticaly?
200 pthread_cleanup_push(pthread_user_data_cleanup, (void *)pthread_self());
201
202 //Check if we should be running according to pthread_pause sub-scheduler
70bd1c94
TM
203 //pthread_pause_reschedule(pthread_self());
204 pthread_extra_yield();
7e0f3dba 205
70bd1c94 206 //Run actual task
7e0f3dba
TM
207 return task.start_routine(task.arg);
208
209 pthread_cleanup_pop(1); //Needed by pthread_cleanup_push() macro
210}
211
212int pthread_extra_create(pthread_t *restrict thread,
213 const pthread_attr_t *restrict attr,
214 void *(*start_routine)(void *),
215 void *restrict arg) {
216
217 pthread_extra_wrapper_t *task = malloc(sizeof(pthread_extra_wrapper_t));
218 assert(task != NULL);
219 task->start_routine=start_routine;
220 task->arg=arg;
221 return pthread_create(thread, attr, pthread_extra_thread_wrapper, task);
222}
This page took 0.380193 seconds and 4 git commands to generate.