changes not to break the compiler
authoradash <adash>
Thu, 10 Jul 2008 01:03:02 +0000 (01:03 +0000)
committeradash <adash>
Thu, 10 Jul 2008 01:03:02 +0000 (01:03 +0000)
Robust/src/Runtime/signal.c

index 76ead1a489f5ec34655523810abf70f7cbb5871b..99684765083f4cfef92d9469db37cbcf0215a3a6 100644 (file)
@@ -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
+}