Table of Contents

Enum UnixSignal

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Represents standard Unix signal numbers, grouped by category.

public enum UnixSignal

Fields

SIGABRT = 6

Abort signal from abort() (SIGABRT).

SIGALRM = 14

Alarm clock (SIGALRM).

SIGBUS = 7

Bus error (SIGBUS).

SIGCHLD = 17

Child stopped or terminated (SIGCHLD).

SIGCONT = 18

Continue executing, if stopped (SIGCONT).

SIGFPE = 8

Floating-point exception (SIGFPE).

SIGHUP = 1

Hang up detected on controlling terminal or death of controlling process (SIGHUP).

SIGILL = 4

Illegal instruction (SIGILL).

SIGINT = 2

Interrupt from keyboard (SIGINT).

SIGKILL = 9

Kills the process immediately (SIGKILL). Cannot be caught or ignored.

SIGPIPE = 13

Broken pipe (SIGPIPE).

SIGPROF = 27

Profiling timer expired (SIGPROF).

SIGPWR = 30

Power failure (SIGPWR).

SIGQUIT = 3

Quit from keyboard (SIGQUIT).

SIGRTMIN = 34

Real-time timer expired (SIGRTMIN and up are real-time).

SIGSEGV = 11

Invalid memory reference (SIGSEGV).

SIGSTOP = 19

Stop process (SIGSTOP). Cannot be caught or ignored.

SIGTERM = 15

Termination signal (SIGTERM).

SIGTRAP = 5

Trace/breakpoint trap (SIGTRAP).

SIGTSTP = 20

Terminal stop signal (SIGTSTP). Typically sent by Ctrl+Z.

SIGTTIN = 21

Background process read from terminal (SIGTTIN).

SIGTTOU = 22

Background process write to terminal (SIGTTOU).

SIGUSR1 = 10

User-defined signal 1 (SIGUSR1).

SIGUSR2 = 12

User-defined signal 2 (SIGUSR2).

SIGVTALRM = 26

Virtual alarm clock (SIGVTALRM).

SIGWINCH = 28

Window resize (SIGWINCH).

SIGXCPU = 24

Software termination signal (SIGXCPU - CPU time limit exceeded).

SIGXFSZ = 25

File size limit exceeded (SIGXFSZ).