projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e23ae3
)
changes not to break the compiler
author
adash
<adash>
Thu, 10 Jul 2008 01:03:02 +0000
(
01:03
+0000)
committer
adash
<adash>
Thu, 10 Jul 2008 01:03:02 +0000
(
01:03
+0000)
Robust/src/Runtime/signal.c
patch
|
blob
|
history
diff --git
a/Robust/src/Runtime/signal.c
b/Robust/src/Runtime/signal.c
index 76ead1a489f5ec34655523810abf70f7cbb5871b..99684765083f4cfef92d9469db37cbcf0215a3a6 100644
(file)
--- 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
+}