We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e222e66 + f64bed2 commit b9d1c80Copy full SHA for b9d1c80
2 files changed
cmd/runtimetest/main.go
@@ -50,8 +50,12 @@ var (
50
"/dev/shm": "tmpfs",
51
}
52
53
+ // NOTE: check if /dev/ptmx is a symlink to /dev/pts/ptmx.
54
+ // os.Readlink() returns only a relative path "pts/ptmx" instead of
55
+ // an absolute path /dev/pts/ptmx.
56
defaultSymlinks = map[string]string{
57
"/dev/fd": "/proc/self/fd",
58
+ "/dev/ptmx": "pts/ptmx",
59
"/dev/stdin": "/proc/self/fd/0",
60
"/dev/stdout": "/proc/self/fd/1",
61
"/dev/stderr": "/proc/self/fd/2",
validation/killsig.go
@@ -15,6 +15,8 @@ import (
15
16
var signals = []string{
17
"TERM",
18
+ "USR1",
19
+ "USR2",
20
21
22
func main() {
0 commit comments