commit | 76f7803a2aa17781e1ad1215c1d17045d8cc8c44 | [log] [tgz] |
---|---|---|
author | Kai Backman <kaib@golang.org> | Thu Dec 10 11:40:11 2009 -0800 |
committer | Kai Backman <kaib@golang.org> | Thu Dec 10 11:40:11 2009 -0800 |
tree | 74af59ce6a5aeef20f95c3e691ddac7113a98db7 | |
parent | 60d4e30dbb15192494e516ecb7b8087d909d2d62 [diff] |
added SHUT_RD, SHOT_WR and xSHUT_RDWR to fix net compilation error R=rsc https://golang.org/cl/165044
diff --git a/src/pkg/syscall/zerrors_linux_arm.go b/src/pkg/syscall/zerrors_linux_arm.go index 908cdd3..1d7ff44 100644 --- a/src/pkg/syscall/zerrors_linux_arm.go +++ b/src/pkg/syscall/zerrors_linux_arm.go
@@ -153,6 +153,9 @@ SIGIO = 0x1d; SIGQUIT = 0x3; SIGCLD = 0x11; + SHUT_RD = 0; + SHUT_RDWR = 0x2; + SHUT_WR = 0x1; SIGABRT = 0x6; SIGTRAP = 0x5; SIGVTALRM = 0x1a;