aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2007-09-19 21:35:03 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2007-09-19 21:35:03 -0400
commit51c55163401eb75dcd360ef671e329d7cf409356 (patch)
treee555a078bd799bbf9e77f927fd57493767916197
parentbab5a1022414de2fbdba5e8674b90b858b1fde1f (diff)
add litmus_task_active() API
Most RT tasks need to do some cleanup before they can terminate. The litmus_task_active() API automates the catching of signals that indicate that the RT task should terminate.
-rw-r--r--include/litmus.h1
-rw-r--r--src/litmus.c14
2 files changed, 15 insertions, 0 deletions
diff --git a/include/litmus.h b/include/litmus.h
index c16aa3b..3595919 100644
--- a/include/litmus.h
+++ b/include/litmus.h
@@ -109,5 +109,6 @@ task_class_t str2class(const char* str);
109void enter_np(void); 109void enter_np(void);
110void exit_np(void); 110void exit_np(void);
111 111
112int litmus_task_active();
112 113
113#endif 114#endif
diff --git a/src/litmus.c b/src/litmus.c
index 65ad294..9a2ebea 100644
--- a/src/litmus.c
+++ b/src/litmus.c
@@ -218,6 +218,17 @@ void exit_np(void)
218 } 218 }
219} 219}
220 220
221static int exit_requested = 0;
222
223static void sig_handler(int sig)
224{
225 exit_requested = 1;
226}
227
228int litmus_task_active(void)
229{
230 return !exit_requested;
231}
221 232
222#define check(str) if (ret == -1) {perror(str); fprintf(stderr, \ 233#define check(str) if (ret == -1) {perror(str); fprintf(stderr, \
223 "Could not initialize LITMUS^RT, aborting...\n"); exit(1);} 234 "Could not initialize LITMUS^RT, aborting...\n"); exit(1);}
@@ -232,6 +243,9 @@ void init_litmus(void)
232 check("mlockall"); 243 check("mlockall");
233 ret = register_np_flag(&np_flag); 244 ret = register_np_flag(&np_flag);
234 check("register_np_flag"); 245 check("register_np_flag");
246 signal(SIGINT, sig_handler);
247 signal(SIGTERM, sig_handler);
248 signal(SIGHUP, sig_handler);
235} 249}
236 250
237 251