Search
lxdream.org :: lxdream/src/util.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/util.c
changeset 1092:7c4ffe27e7b5
prev1091:186558374345
next1148:8e75fab17be8
author nkeynes
date Fri Sep 10 08:48:34 2010 +1000 (13 years ago)
permissions -rw-r--r--
last change Run the eventq at the end of the time-slice rather than the beginning, so
that it runs for the correct period of time when the time-slice finishes
early
file annotate diff log raw
1.1 --- a/src/util.c Tue Dec 15 08:46:37 2009 +1000
1.2 +++ b/src/util.c Fri Sep 10 08:48:34 2010 +1000
1.3 @@ -58,6 +58,8 @@
1.4 sigemptyset(&sa.sa_mask);
1.5 sa.sa_flags = SA_RESETHAND|SA_SIGINFO;
1.6 sigaction( SIGSEGV, &sa, NULL );
1.7 + sigaction( SIGILL, &sa, NULL );
1.8 + sigaction( SIGBUS, &sa, NULL );
1.9 }
1.10
1.11
.