From: adash Date: Thu, 10 Jul 2008 01:03:02 +0000 (+0000) Subject: changes not to break the compiler X-Git-Tag: preEdgeChange~70 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0e38f81c3b8001580aa81fd1723cbe7d82e0dc7a;p=IRC.git changes not to break the compiler --- diff --git a/Robust/src/Runtime/signal.c b/Robust/src/Runtime/signal.c index 76ead1a4..99684765 100644 --- a/Robust/src/Runtime/signal.c +++ b/Robust/src/Runtime/signal.c @@ -15,13 +15,13 @@ void transStatsHandler(int sig, siginfo_t* info, void *context) { #endif } -#ifdef TRANSSTATS void CALL00(___Signal______nativeSigAction____) { +#ifdef TRANSSTATS struct sigaction siga; siga.sa_handler = NULL; siga.sa_flags = SA_SIGINFO; siga.sa_sigaction = &transStatsHandler; sigemptyset(&siga.sa_mask); sigaction(SIGUSR1, &siga, 0); -} #endif +}