[BACK]Return to signame.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gen/signame.c between version 1.12 and 1.13

version 1.12, 2003/08/07 16:42:57 version 1.13, 2005/09/13 01:44:09
Line 38  __RCSID("$NetBSD$");
Line 38  __RCSID("$NetBSD$");
 #endif  #endif
 #endif /* LIBC_SCCS and not lint */  #endif /* LIBC_SCCS and not lint */
   
 __warn_references(sys_signame,  #include <signal.h>
     "warning: reference to compatibility sys_signame[]; include <signal.h> for correct reference")  #include <unistd.h>
   
 const char *const sys_signame[] = {  static const char *const __signame14[] = {
         "Signal 0",     /* 0 */          "Signal 0",     /* 0 */
         "HUP",          /* 1 SIGHUP */          "HUP",          /* 1 SIGHUP */
         "INT",          /* 2 SIGINT */          "INT",          /* 2 SIGINT */
Line 74  const char *const sys_signame[] = {
Line 74  const char *const sys_signame[] = {
         "INFO",         /* 29 SIGINFO */          "INFO",         /* 29 SIGINFO */
         "USR1",         /* 30 SIGUSR1 */          "USR1",         /* 30 SIGUSR1 */
         "USR2",         /* 31 SIGUSR2 */          "USR2",         /* 31 SIGUSR2 */
           "PWR",          /* 32 SIGPWR */
           "RT0",          /* 33 SIGRTMIN + 0 */
           "RT1",          /* 34 SIGRTMIN + 1 */
           "RT2",          /* 35 SIGRTMIN + 2 */
           "RT3",          /* 36 SIGRTMIN + 3 */
           "RT4",          /* 37 SIGRTMIN + 4 */
           "RT5",          /* 38 SIGRTMIN + 5 */
           "RT6",          /* 39 SIGRTMIN + 6 */
           "RT7",          /* 40 SIGRTMIN + 7 */
           "RT8",          /* 41 SIGRTMIN + 8 */
           "RT9",          /* 42 SIGRTMIN + 9 */
           "RT10",         /* 43 SIGRTMIN + 10 */
           "RT11",         /* 44 SIGRTMIN + 11 */
           "RT12",         /* 45 SIGRTMIN + 12 */
           "RT13",         /* 46 SIGRTMIN + 13 */
           "RT14",         /* 47 SIGRTMIN + 14 */
           "RT15",         /* 48 SIGRTMIN + 15 */
           "RT16",         /* 49 SIGRTMIN + 16 */
           "RT17",         /* 50 SIGRTMIN + 17 */
           "RT18",         /* 51 SIGRTMIN + 18 */
           "RT19",         /* 52 SIGRTMIN + 19 */
           "RT20",         /* 53 SIGRTMIN + 20 */
           "RT21",         /* 54 SIGRTMIN + 21 */
           "RT22",         /* 55 SIGRTMIN + 22 */
           "RT23",         /* 56 SIGRTMIN + 23 */
           "RT24",         /* 57 SIGRTMIN + 24 */
           "RT25",         /* 58 SIGRTMIN + 25 */
           "RT26",         /* 59 SIGRTMIN + 26 */
           "RT27",         /* 60 SIGRTMIN + 27 */
           "RT28",         /* 61 SIGRTMIN + 28 */
           "RT29",         /* 62 SIGRTMIN + 29 */
           "RT30",         /* 63 SIGRTMIN + 30 */
 };  };
   
   const char * const *__sys_signame14 = __signame14;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

CVSweb <webmaster@jp.NetBSD.org>