semtimedop implementation for Linux/m68k.
[glibc.git] / linuxthreads / sysdeps / pthread / timer_create.c
blob795f94c7d2f484cc20fda88a946bb959f7871e4e
1 /* Copyright (C) 2000, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Kaz Kylheku <kaz@ashi.footprints.net>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <errno.h>
21 #include <signal.h>
22 #include <pthread.h>
23 #include <time.h>
24 #include <unistd.h>
26 #include "posix-timer.h"
29 /* Create new per-process timer using CLOCK. */
30 int
31 timer_create (clock_id, evp, timerid)
32 clockid_t clock_id;
33 struct sigevent *evp;
34 timer_t *timerid;
36 int retval = -1;
37 struct timer_node *newtimer = NULL;
38 struct thread_node *thread = NULL;
40 if (0
41 #ifdef _POSIX_CPUTIME
42 || clock_id == CLOCK_PROCESS_CPUTIME_ID
43 #endif
44 #ifdef _POSIX_THREAD_CPUTIME
45 || clock_id == CLOCK_THREAD_CPUTIME_ID
46 #endif
49 /* We don't allow timers for CPU clocks. At least not in the
50 moment. */
51 __set_errno (ENOTSUP);
52 return -1;
55 if (clock_id != CLOCK_REALTIME)
57 __set_errno (EINVAL);
58 return -1;
61 pthread_once (&__timer_init_once_control, __timer_init_once);
63 if (__timer_init_failed)
65 __set_errno (ENOMEM);
66 return -1;
69 pthread_mutex_lock (&__timer_mutex);
71 newtimer = __timer_alloc ();
72 if (__builtin_expect (newtimer == NULL, 0))
74 __set_errno (EAGAIN);
75 goto unlock_bail;
78 if (evp != NULL)
79 newtimer->event = *evp;
80 else
82 newtimer->event.sigev_notify = SIGEV_SIGNAL;
83 newtimer->event.sigev_signo = SIGALRM;
84 newtimer->event.sigev_value.sival_int = timer_ptr2id (newtimer);
85 newtimer->event.sigev_notify_function = 0;
88 newtimer->event.sigev_notify_attributes = &newtimer->attr;
89 newtimer->creator_pid = getpid ();
91 switch (__builtin_expect (newtimer->event.sigev_notify, SIGEV_SIGNAL))
93 case SIGEV_NONE:
94 /* This is a strange choice! */
95 break;
97 case SIGEV_SIGNAL:
98 /* We have a global thread for delivering timed signals.
99 If it is not running, try to start it up. */
100 switch (clock_id)
102 case CLOCK_REALTIME:
103 default:
104 thread = &__timer_signal_thread_rclk;
105 break;
106 #ifdef _POSIX_CPUTIME
107 case CLOCK_PROCESS_CPUTIME_ID:
108 thread = &__timer_signal_thread_pclk;
109 break;
110 #endif
111 #ifdef _POSIX_THREAD_CPUTIME
112 case CLOCK_THREAD_CPUTIME_ID:
113 thread = &__timer_signal_thread_tclk;
114 break;
115 #endif
118 if (! thread->exists)
120 if (__builtin_expect (__timer_thread_start (thread),
121 1) < 0)
123 __set_errno (EAGAIN);
124 goto unlock_bail;
127 break;
129 case SIGEV_THREAD:
130 /* Copy over thread attributes or set up default ones. */
131 if (evp->sigev_notify_attributes)
132 newtimer->attr = *(pthread_attr_t *) evp->sigev_notify_attributes;
133 else
134 pthread_attr_init (&newtimer->attr);
136 /* Ensure thread attributes call for deatched thread. */
137 pthread_attr_setdetachstate (&newtimer->attr, PTHREAD_CREATE_DETACHED);
139 /* Try to find existing thread having the right attributes. */
140 thread = __timer_thread_find_matching (&newtimer->attr, clock_id);
142 /* If no existing thread has these attributes, try to allocate one. */
143 if (thread == NULL)
144 thread = __timer_thread_alloc (&newtimer->attr, clock_id);
146 /* Out of luck; no threads are available. */
147 if (__builtin_expect (thread == NULL, 0))
149 __set_errno (EAGAIN);
150 goto unlock_bail;
153 /* If the thread is not running already, try to start it. */
154 if (! thread->exists
155 && __builtin_expect (! __timer_thread_start (thread), 0))
157 __set_errno (EAGAIN);
158 goto unlock_bail;
160 break;
162 default:
163 __set_errno (EINVAL);
164 goto unlock_bail;
167 newtimer->clock = clock_id;
168 newtimer->abstime = 0;
169 newtimer->armed = 0;
170 newtimer->thread = thread;
172 *timerid = timer_ptr2id (newtimer);
173 retval = 0;
175 if (__builtin_expect (retval, 0) == -1)
177 unlock_bail:
178 if (thread != NULL)
179 __timer_thread_dealloc (thread);
180 if (newtimer != NULL)
181 __timer_dealloc (newtimer);
184 pthread_mutex_unlock (&__timer_mutex);
186 return retval;