24 #if (defined(DISABLE_TIMEOUT) || defined(MINGW))
26 void nrn_timeout(
int seconds) {}
30 void (*nrntimeout_call)();
32 static struct itimerval value;
33 static struct sigaction act, oact;
35 static void timed_out(
int sig) {
38 printf(
"timed_out told=%g t=%g\n", told,
t);
42 if (nrntimeout_call) {
50 void nrn_timeout(
int seconds) {
55 printf(
"nrn_timeout %d\n", seconds);
59 act.sa_handler = timed_out;
60 act.sa_flags = SA_RESTART;
61 if (sigaction(SIGALRM, &act, &oact)) {
62 printf(
"sigaction failed\n");
66 sigaction(SIGALRM, &oact, (
struct sigaction*) 0);
68 value.it_interval.tv_sec = seconds;
69 value.it_interval.tv_usec = 0;
70 value.it_value.tv_sec = seconds;
71 value.it_value.tv_usec = 0;
72 if (setitimer(ITIMER_REAL, &value, (
struct itimerval*) 0)) {
73 printf(
"setitimer failed\n");