2 #include "pthread_impl.h"
5 union sigval sigev_value;
16 static void dummy_1(pthread_t self)
19 weak_alias(dummy_1, __pthread_tsd_run_dtors);
21 static void cleanup_fromsig(void *p)
23 pthread_t self = __pthread_self();
24 __pthread_tsd_run_dtors(self);
27 self->canceldisable = 0;
28 self->cancelasync = 0;
29 self->unblock_cancel = 0;
33 static void timer_handler(int sig, siginfo_t *si, void *ctx)
35 pthread_t self = __pthread_self();
37 void (*notify)(union sigval) = (void (*)(union sigval))self->start;
38 union sigval val = { .sival_ptr = self->start_arg };
40 if (!setjmp(jb) && si->si_code == SI_TIMER) {
41 pthread_cleanup_push(cleanup_fromsig, jb);
43 pthread_cleanup_pop(0);
47 static void install_handler()
49 struct sigaction sa = {
50 .sa_sigaction = timer_handler,
51 .sa_flags = SA_SIGINFO | SA_RESTART
53 __libc_sigaction(SIGTIMER, &sa, 0);
54 sigaddset(&sa.sa_mask, SIGTIMER);
55 __libc_sigprocmask(SIG_UNBLOCK, &sa.sa_mask, 0);
58 static void *start(void *arg)
60 pthread_t self = __pthread_self();
61 struct start_args *args = arg;
63 /* Reuse no-longer-needed thread structure fields to avoid
64 * needing the timer address in the signal handler. */
65 self->start = (void *(*)(void *))args->sev->sigev_notify_function;
66 self->start_arg = args->sev->sigev_value.sival_ptr;
67 self->result = (void *)-1;
69 pthread_barrier_wait(&args->b);
70 __wait(&self->delete_timer, 0, 0, 1);
71 __syscall(SYS_timer_delete, self->result);
75 int timer_create(clockid_t clk, struct sigevent *evp, timer_t *res)
77 static pthread_once_t once = PTHREAD_ONCE_INIT;
81 struct start_args args;
82 struct ksigevent ksev, *ksevp=0;
85 switch (evp ? evp->sigev_notify : SIGEV_SIGNAL) {
89 ksev.sigev_value = evp->sigev_value;
90 ksev.sigev_signo = evp->sigev_signo;
91 ksev.sigev_notify = evp->sigev_notify;
95 if (syscall(SYS_timer_create, clk, ksevp, &timerid) < 0)
97 *res = (void *)timerid;
100 pthread_once(&once, install_handler);
101 if (evp->sigev_notify_attributes)
102 attr = *evp->sigev_notify_attributes;
104 pthread_attr_init(&attr);
105 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
106 pthread_barrier_init(&args.b, 0, 2);
108 r = pthread_create(&td, &attr, start, &args);
113 ksev.sigev_value.sival_ptr = 0;
114 ksev.sigev_signo = SIGTIMER;
115 ksev.sigev_notify = 4; /* SIGEV_THREAD_ID */
116 ksev.sigev_tid = td->tid;
117 r = syscall(SYS_timer_create, clk, &ksev, &timerid);
118 pthread_barrier_wait(&args.b);
123 td->result = (void *)timerid;