-
-
Notifications
You must be signed in to change notification settings - Fork 978
Expand file tree
/
Copy pathCommandSignals.cs
More file actions
73 lines (61 loc) · 1.78 KB
/
CommandSignals.cs
File metadata and controls
73 lines (61 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
namespace Renci.SshNet
{
/// <summary>
/// The ssh compatible standard POSIX/ANSI signals.
/// </summary>
public static class CommandSignals
{
/// <summary>
/// Hangup (POSIX).
/// </summary>
public const string SIGHUP = "HUP";
/// <summary>
/// Interrupt (ANSI).
/// </summary>
public const string SIGINT = "INT";
/// <summary>
/// Quit (POSIX).
/// </summary>
public const string SIGQUIT = "QUIT";
/// <summary>
/// Illegal instruction (ANSI).
/// </summary>
public const string SIGILL = "ILL";
/// <summary>
/// Abort (ANSI).
/// </summary>
public const string SIGABRT = "ABRT";
/// <summary>
/// Floating-point exception (ANSI).
/// </summary>
public const string SIGFPE = "FPE";
/// <summary>
/// Kill, unblockable (POSIX).
/// </summary>
public const string SIGKILL = "KILL";
/// <summary>
/// User-defined signal 1 (POSIX).
/// </summary>
public const string SIGUSR1 = "USR1";
/// <summary>
/// Segmentation violation (ANSI).
/// </summary>
public const string SIGSEGV = "SEGV";
/// <summary>
/// User-defined signal 2 (POSIX).
/// </summary>
public const string SIGUSR2 = "USR2";
/// <summary>
/// Broken pipe (POSIX).
/// </summary>
public const string SIGPIPE = "PIPE";
/// <summary>
/// Alarm clock (POSIX).
/// </summary>
public const string SIGALRM = "ALRM";
/// <summary>
/// Termination (ANSI).
/// </summary>
public const string SIGTERM = "TERM";
}
}