Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ PosixSignal

Enumerator
SIGHUP 
SIGINT 
SIGQUIT 
SIGTERM 
SIGCHLD 
SIGCONT 
SIGWINCH 
SIGTTIN 
SIGTTOU 
SIGTSTP 

Definition at line 5 of file PosixSignal.cs.

6{
7 SIGHUP = -1,
8 SIGINT = -2,
9 SIGQUIT = -3,
10 SIGTERM = -4,
11 [UnsupportedOSPlatform("windows")]
12 SIGCHLD = -5,
13 [UnsupportedOSPlatform("windows")]
14 SIGCONT = -6,
15 [UnsupportedOSPlatform("windows")]
16 SIGWINCH = -7,
17 [UnsupportedOSPlatform("windows")]
18 SIGTTIN = -8,
19 [UnsupportedOSPlatform("windows")]
20 SIGTTOU = -9,
21 [UnsupportedOSPlatform("windows")]
22 SIGTSTP = -10
23}