From 0e38f81c3b8001580aa81fd1723cbe7d82e0dc7a Mon Sep 17 00:00:00 2001 From: adash Date: Thu, 10 Jul 2008 01:03:02 +0000 Subject: [PATCH] changes not to break the compiler --- Robust/src/Runtime/signal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} -- 2.34.1