1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1995-1999
5 * Interval timer for profiling and pre-emptive scheduling.
7 * ---------------------------------------------------------------------------*/
10 * The interval timer is used for profiling and for context switching in the
11 * threaded build. Though POSIX 1003.1b includes a standard interface for
12 * such things, no one really seems to be implementing them yet. Even
13 * Solaris 2.3 only seems to provide support for @CLOCK_REAL@, whereas we're
14 * keen on getting access to @CLOCK_VIRTUAL@.
16 * Hence, we use the old-fashioned @setitimer@ that just about everyone seems
17 * to support. So much for standards.
23 #include "posix/Itimer.h"
24 #include "Proftimer.h"
27 #include "posix/Select.h"
29 /* As recommended in the autoconf manual */
30 # ifdef TIME_WITH_SYS_TIME
31 # include <sys/time.h>
34 # ifdef HAVE_SYS_TIME_H
35 # include <sys/time.h>
47 * In the threaded RTS, we can't set the virtual timer because the
48 * thread which has the virtual timer might be sitting waiting for a
49 * capability, and the virtual timer only ticks in CPU time.
51 * So, possible solutions:
53 * (1) tick in realtime. Not very good, because this ticker is used for
54 * profiling, and this will give us unreliable time profiling
57 * (2) save/restore the virtual timer around excursions into STG land.
58 * Sounds great, but I tried it and the resolution of the virtual timer
59 * isn't good enough (on Linux) - most of our excursions fall
60 * within the timer's resolution and we never make any progress.
62 * (3) have a virtual timer in every OS thread. Might be reasonable,
63 * because most of the time there is only ever one of these
64 * threads running, so it approximates a single virtual timer.
65 * But still quite bogus (and I got crashes when I tried this).
67 * For now, we're using (1), but this needs a better solution. --SDM
70 #if defined(USE_TIMER_CREATE)
72 # define ITIMER_SIGNAL SIGVTALRM
74 # define TIMER_FLAVOUR CLOCK_REALTIME
76 # define TIMER_FLAVOUR CLOCK_PROCESS_CPUTIME_ID
79 #elif defined(HAVE_SETITIMER)
82 // Oh dear, we have to use SIGALRM if there's no timer_create and
83 // we're using the THREADED_RTS. This leads to problems, see bug #850.
84 # define ITIMER_SIGNAL SIGALRM
85 # define ITIMER_FLAVOUR ITIMER_REAL
87 # define ITIMER_SIGNAL SIGVTALRM
88 # define ITIMER_FLAVOUR ITIMER_VIRTUAL
93 # error No way to set an interval timer.
97 #if defined(USE_TIMER_CREATE)
103 install_vtalrm_handler(TickProc handle_tick)
105 struct sigaction action;
107 action.sa_handler = handle_tick;
109 sigemptyset(&action.sa_mask);
112 // specify SA_RESTART. One consequence if we don't do this is
113 // that readline gets confused by the -threaded RTS. It seems
114 // that if a SIGALRM handler is installed without SA_RESTART,
115 // readline installs its own SIGALRM signal handler (see
116 // readline's signals.c), and this somehow causes readline to go
117 // wrong when the input exceeds a single line (try it).
118 action.sa_flags = SA_RESTART;
123 if (sigaction(ITIMER_SIGNAL, &action, NULL) == -1) {
124 sysErrorBelch("sigaction");
125 stg_exit(EXIT_FAILURE);
130 startTicker(nat ms, TickProc handle_tick)
132 install_vtalrm_handler(handle_tick);
134 #if !defined(THREADED_RTS)
135 timestamp = getourtimeofday();
138 #if defined(USE_TIMER_CREATE)
140 struct itimerspec it;
143 ev.sigev_notify = SIGEV_SIGNAL;
144 ev.sigev_signo = ITIMER_SIGNAL;
146 it.it_value.tv_sec = ms / 1000;
147 it.it_value.tv_nsec = (ms % 1000) * 1000000;
148 it.it_interval = it.it_value;
150 if (timer_create(TIMER_FLAVOUR, &ev, &timer) != 0) {
151 sysErrorBelch("timer_create");
152 stg_exit(EXIT_FAILURE);
155 if (timer_settime(timer, 0, &it, NULL) != 0) {
156 sysErrorBelch("timer_settime");
157 stg_exit(EXIT_FAILURE);
164 it.it_value.tv_sec = ms / 1000;
165 it.it_value.tv_usec = (ms % 1000) * 1000;
166 it.it_interval = it.it_value;
168 if (setitimer(ITIMER_FLAVOUR, &it, NULL) != 0) {
169 sysErrorBelch("setitimer");
170 stg_exit(EXIT_FAILURE);
179 #if defined(USE_TIMER_CREATE)
180 struct itimerspec it;
182 it.it_value.tv_sec = 0;
183 it.it_value.tv_nsec = 0;
184 it.it_interval = it.it_value;
186 if (timer_settime(timer, 0, &it, NULL) != 0) {
187 sysErrorBelch("timer_settime");
188 stg_exit(EXIT_FAILURE);
193 it.it_value.tv_sec = 0;
194 it.it_value.tv_usec = 0;
195 it.it_interval = it.it_value;
197 if (setitimer(ITIMER_FLAVOUR, &it, NULL) != 0) {
198 sysErrorBelch("setitimer");
199 stg_exit(EXIT_FAILURE);
205 /* Currently unused */
207 block_vtalrm_signal(void)
211 sigemptyset(&signals);
212 sigaddset(&signals, ITIMER_SIGNAL);
214 (void) sigprocmask(SIG_BLOCK, &signals, NULL);
218 unblock_vtalrm_signal(void)
222 sigemptyset(&signals);
223 sigaddset(&signals, ITIMER_SIGNAL);
225 (void) sigprocmask(SIG_UNBLOCK, &signals, NULL);
229 /* gettimeofday() takes around 1us on our 500MHz PIII. Since we're
230 * only calling it 50 times/s, it shouldn't have any great impact.
233 getourtimeofday(void)
236 gettimeofday(&tv, (struct timezone *) NULL);
237 // cast to lnat because nat may be 64 bit when int is only 32 bit
238 return ((lnat)tv.tv_sec * 1000 / RtsFlags.MiscFlags.tickInterval +
239 (lnat)tv.tv_usec / (RtsFlags.MiscFlags.tickInterval * 1000));