2002-10-30 Eric Norum <eric.norum@usask.ca>

* src/psignal.c: Fix counting problem which resulted in too many
	entries being in the POSIX signals default behavior table.
This commit is contained in:
Joel Sherrill
2002-11-05 19:46:26 +00:00
parent 83433304e8
commit 5d941f364d
2 changed files with 6 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2002-10-30 Eric Norum <eric.norum@usask.ca>
* src/psignal.c: Fix counting problem which resulted in too many
entries being in the POSIX signals default behavior table.
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* ChangeLog: Corrected.
+1 -2
View File
@@ -68,8 +68,7 @@ struct sigaction _POSIX_signals_Default_vectors[ SIG_ARRAY_MAX ] = {
/* SIGRT 28 */ SIGACTION_TERMINATE,
/* SIGRT 29 */ SIGACTION_TERMINATE,
/* SIGRT 30 */ SIGACTION_TERMINATE,
/* SIGRT 31 */ SIGACTION_TERMINATE,
/* SIGRTMAX 32 */ SIGACTION_TERMINATE
/* SIGRTMAX 31 */ SIGACTION_TERMINATE
};
struct sigaction _POSIX_signals_Vectors[ SIG_ARRAY_MAX ];