Signed-off-by: Brian Goff <cpuguy83@gmail.com>
| ... | ... |
@@ -14,6 +14,8 @@ const ( |
| 14 | 14 |
SIGCHLD = syscall.SIGCHLD |
| 15 | 15 |
// SIGWINCH is a signal sent to a process when its controlling terminal changes its size |
| 16 | 16 |
SIGWINCH = syscall.SIGWINCH |
| 17 |
+ // SIGPIPE is a signal sent to a process when a pipe is written to before the other end is open for reading |
|
| 18 |
+ SIGPIPE = syscall.SIGPIPE |
|
| 17 | 19 |
// DefaultStopSignal is the syscall signal used to stop a container in unix systems. |
| 18 | 20 |
DefaultStopSignal = "SIGTERM" |
| 19 | 21 |
) |