~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/runtime/signals_openbsd.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-20 14:06:23 UTC
  • mfrom: (14.1.23 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130820140623-b414jfxi3m0qkmrq
Tags: 2:1.1.2-2ubuntu1
* Merge from Debian unstable (LP: #1211749, #1202027). Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - d/control,control.cross: Update Breaks/Replaces for Ubuntu
    versions to ensure smooth upgrades, regenerate control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#define D SigDefault
10
10
 
11
11
SigTab runtime·sigtab[] = {
12
 
        /* 0 */ 0, "SIGNONE: no trap",
13
 
        /* 1 */ N+K, "SIGHUP: terminal line hangup",
14
 
        /* 2 */ N+K, "SIGINT: interrupt",
15
 
        /* 3 */ N+T, "SIGQUIT: quit",
16
 
        /* 4 */ T, "SIGILL: illegal instruction",
17
 
        /* 5 */ T, "SIGTRAP: trace trap",
18
 
        /* 6 */ N+T, "SIGABRT: abort",
19
 
        /* 7 */ T, "SIGEMT: emulate instruction executed",
20
 
        /* 8 */ P, "SIGFPE: floating-point exception",
21
 
        /* 9 */ 0, "SIGKILL: kill",
 
12
        /*  0 */        0, "SIGNONE: no trap",
 
13
        /*  1 */        N+K, "SIGHUP: terminal line hangup",
 
14
        /*  2 */        N+K, "SIGINT: interrupt",
 
15
        /*  3 */        N+T, "SIGQUIT: quit",
 
16
        /*  4 */        T, "SIGILL: illegal instruction",
 
17
        /*  5 */        T, "SIGTRAP: trace trap",
 
18
        /*  6 */        N+T, "SIGABRT: abort",
 
19
        /*  7 */        T, "SIGEMT: emulate instruction executed",
 
20
        /*  8 */        P, "SIGFPE: floating-point exception",
 
21
        /*  9 */        0, "SIGKILL: kill",
22
22
        /* 10 */        P, "SIGBUS: bus error",
23
23
        /* 11 */        P, "SIGSEGV: segmentation violation",
24
24
        /* 12 */        T, "SIGSYS: bad system call",