CoreNEURON
nrntimeout.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
8 
9 #include "coreneuron/nrnconf.h"
11 #include "coreneuron/mpi/nrnmpi.h"
13 
14 #if NRNMPI
15 
16 #include <csignal>
17 #include <sys/time.h>
18 
19 /* if you are using any sampling based profiling tool,
20 setitimer will conflict with profiler. In that case,
21 user can disable setitimer which is just safety for
22 deadlock situations */
23 namespace coreneuron {
24 #if (defined(DISABLE_TIMEOUT) || defined(MINGW))
25 
26 void nrn_timeout(int seconds) {}
27 
28 #else
29 
30 void (*nrntimeout_call)();
31 static double told;
32 static struct itimerval value;
33 static struct sigaction act, oact;
34 
35 static void timed_out(int sig) {
36  (void) sig; /* unused */
37 #if CORENRN_DEBUG
38  printf("timed_out told=%g t=%g\n", told, t);
39 #endif
40  if (nrn_threads->_t == told) { /* nothing has been accomplished since last signal*/
41  printf("nrn_timeout t=%g\n", nrn_threads->_t);
42  if (nrntimeout_call) {
43  (*nrntimeout_call)();
44  }
45  nrn_abort(0);
46  }
47  told = nrn_threads->_t;
48 }
49 
50 void nrn_timeout(int seconds) {
51  if (nrnmpi_myid != 0) {
52  return;
53  }
54 #if CORENRN_DEBUG
55  printf("nrn_timeout %d\n", seconds);
56 #endif
57  if (seconds) {
58  told = nrn_threads->_t;
59  act.sa_handler = timed_out;
60  act.sa_flags = SA_RESTART;
61  if (sigaction(SIGALRM, &act, &oact)) {
62  printf("sigaction failed\n");
63  nrn_abort(0);
64  }
65  } else {
66  sigaction(SIGALRM, &oact, (struct sigaction*) 0);
67  }
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");
74  nrn_abort(0);
75  }
76 }
77 
78 #endif /* DISABLE_TIMEOUT */
79 } // namespace coreneuron
80 
81 #endif /*NRNMPI*/
utils.hpp
coreneuron::NrnThread::_t
double _t
Definition: multicore.hpp:76
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::t
double t
Definition: register_mech.cpp:22
coreneuron::nrn_threads
NrnThread * nrn_threads
Definition: multicore.cpp:56
coreneuron::nrn_abort
void nrn_abort(int errcode)
Definition: utils.cpp:13
nrnconf.h
multicore.hpp
coreneuron::nrnmpi_myid
int nrnmpi_myid
Definition: nrnmpi_def_cinc.cpp:11
nrnmpi.h