From 97d9b88b86c42088bddcb81511cfaebd7e1b24b7 Mon Sep 17 00:00:00 2001 From: Pierre-Marc Fournier Date: Thu, 30 Jul 2009 15:28:18 -0400 Subject: [PATCH] libust: start working on process keepalive --- libust/tracectl.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) diff --git a/libust/tracectl.c b/libust/tracectl.c index cf2b89e..1b0af3a 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -953,6 +953,95 @@ static void __attribute__((destructor)) fini() } #endif +#if 0 +static int trace_recording(void) +{ + int retval = 0; + struct ltt_trace_struct *trace; + + ltt_lock_traces(); + + list_for_each_entry(trace, <t_traces.head, list) { + if(trace->active) { + retval = 1; + break; + } + } + + ltt_unlock_traces(); + + return retval; +} + +static int have_consumer(void) +{ + return !list_empty(&blocked_consumers); +} + +/* This destructor keeps the process alive for a few seconds in order + * to leave time to ustd to consume its buffers. + */ + +int restarting_sleep(int secs) +{ + struct timespec tv; + int result; + + tv.tv_sec = secs; + tv.tv_nsec = 0; + + do { + result = nanosleep(&tv, &tv); + } while(result == -1 && errno == EINTR); + + return result; +} + +static void __attribute__((destructor)) keepalive() +{ +// struct ustcomm_ustd ustd; +// int result; +// sigset_t sigset; +// +// result = sigemptyset(&sigset); +// if(result == -1) { +// perror("sigemptyset"); +// return; +// } +// result = sigaddset(&sigset, SIGIO); +// if(result == -1) { +// perror("sigaddset"); +// return; +// } +// result = sigprocmask(SIG_BLOCK, &sigset, NULL); +// if(result == -1) { +// perror("sigprocmask"); +// return; +// } +// +// if(trace_recording()) { +// if(!have_consumer()) { +// /* Request listener creation. We've blocked SIGIO's in +// * order to not interrupt sleep(), so we will miss the +// * one sent by the daemon and therefore won't create +// * the listener automatically. +// */ +// create_listener(); +// + printf("Keeping process alive for consumer daemon...\n"); + restarting_sleep(3); + printf("Finally dying...\n"); +// } +// } +// +// result = sigprocmask(SIG_UNBLOCK, &sigset, NULL); +// if(result == -1) { +// perror("sigprocmask"); +// return; +// } +} +#endif + /* Notify ust that there was a fork. This needs to be called inside * the new process, anytime a process whose memory is not shared with * the parent is created. If this function is not called, the events -- 2.34.1