Fixed bug whereby interrupt 0 = interrupt/alarm, i.e., SIGALRM, wasn't

being switched over from default handling (which is process termination)
to S48/scsh handling.
This commit is contained in:
shivers 1998-06-16 21:17:58 +00:00
parent c266ffbf46
commit ec63c53ee6
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ void install_scsh_handlers(void)
new.sa_flags = 0;
for(i=max_sig; i>=0; i--)
if( sig2int[i] ) {
if( sig2int[i] >= 0 ) {
/* This is a signal we want the S48 interrupt system to handle. */
sigaction(i, &new, 0);
}