diff options
Diffstat (limited to 'gcc/ada/5rosinte.ads')
-rw-r--r-- | gcc/ada/5rosinte.ads | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ada/5rosinte.ads b/gcc/ada/5rosinte.ads index 649499aae1b..710176c1222 100644 --- a/gcc/ada/5rosinte.ads +++ b/gcc/ada/5rosinte.ads @@ -6,7 +6,6 @@ -- -- -- S p e c -- -- -- --- -- -- Copyright (C) 1997-2003 Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- @@ -88,6 +87,7 @@ package System.OS_Interface is Max_Interrupt : constant := 31; type Signal is new int range 0 .. Max_Interrupt; + SIGXCPU : constant := 0; -- XCPU SIGHUP : constant := 1; -- hangup SIGINT : constant := 2; -- interrupt (rubout) SIGQUIT : constant := 3; -- quit (ASCD FS) @@ -106,7 +106,6 @@ package System.OS_Interface is SIGTERM : constant := 15; -- software termination signal from kill SIGUSR1 : constant := 16; -- user defined signal 1 SIGUSR2 : constant := 17; -- user defined signal 2 - SIGXCPU : constant := 0; -- XCPU SIGADAABORT : constant := SIGABRT; |