1 /* Copyright (C) 2000-2018 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
17 not, see <http://www.gnu.org/licenses/>. */
25 #include "posix-timer.h"
28 /* Create new per-process timer using CLOCK. */
30 timer_create (clockid_t clock_id
, struct sigevent
*evp
, timer_t
*timerid
)
33 struct timer_node
*newtimer
= NULL
;
34 struct thread_node
*thread
= NULL
;
37 #if defined _POSIX_CPUTIME && _POSIX_CPUTIME >= 0
38 || clock_id
== CLOCK_PROCESS_CPUTIME_ID
40 #if defined _POSIX_THREAD_CPUTIME && _POSIX_THREAD_CPUTIME >= 0
41 || clock_id
== CLOCK_THREAD_CPUTIME_ID
45 /* We don't allow timers for CPU clocks. At least not in the
47 __set_errno (ENOTSUP
);
51 if (clock_id
!= CLOCK_REALTIME
)
57 pthread_once (&__timer_init_once_control
, __timer_init_once
);
59 if (__timer_init_failed
)
65 pthread_mutex_lock (&__timer_mutex
);
67 newtimer
= __timer_alloc ();
68 if (__glibc_unlikely (newtimer
== NULL
))
75 newtimer
->event
= *evp
;
78 newtimer
->event
.sigev_notify
= SIGEV_SIGNAL
;
79 newtimer
->event
.sigev_signo
= SIGALRM
;
80 newtimer
->event
.sigev_value
.sival_ptr
= newtimer
;
81 newtimer
->event
.sigev_notify_function
= 0;
84 newtimer
->event
.sigev_notify_attributes
= &newtimer
->attr
;
85 newtimer
->creator_pid
= getpid ();
87 switch (__builtin_expect (newtimer
->event
.sigev_notify
, SIGEV_SIGNAL
))
91 /* We have a global thread for delivering timed signals.
92 If it is not running, try to start it up. */
93 thread
= &__timer_signal_thread_rclk
;
96 if (__builtin_expect (__timer_thread_start (thread
),
106 /* Copy over thread attributes or set up default ones. */
107 if (evp
->sigev_notify_attributes
)
108 newtimer
->attr
= *(pthread_attr_t
*) evp
->sigev_notify_attributes
;
110 pthread_attr_init (&newtimer
->attr
);
112 /* Ensure thread attributes call for deatched thread. */
113 pthread_attr_setdetachstate (&newtimer
->attr
, PTHREAD_CREATE_DETACHED
);
115 /* Try to find existing thread having the right attributes. */
116 thread
= __timer_thread_find_matching (&newtimer
->attr
, clock_id
);
118 /* If no existing thread has these attributes, try to allocate one. */
120 thread
= __timer_thread_alloc (&newtimer
->attr
, clock_id
);
122 /* Out of luck; no threads are available. */
123 if (__glibc_unlikely (thread
== NULL
))
125 __set_errno (EAGAIN
);
129 /* If the thread is not running already, try to start it. */
131 && __builtin_expect (! __timer_thread_start (thread
), 0))
133 __set_errno (EAGAIN
);
139 __set_errno (EINVAL
);
143 newtimer
->clock
= clock_id
;
144 newtimer
->abstime
= 0;
146 newtimer
->thread
= thread
;
148 *timerid
= timer_ptr2id (newtimer
);
151 if (__builtin_expect (retval
, 0) == -1)
155 __timer_thread_dealloc (thread
);
156 if (newtimer
!= NULL
)
158 timer_delref (newtimer
);
159 __timer_dealloc (newtimer
);
163 pthread_mutex_unlock (&__timer_mutex
);