]> Cypherpunks repositories - gostls13.git/commitdiff
added SHUT_RD, SHOT_WR and xSHUT_RDWR to fix net compilation error
authorKai Backman <kaib@golang.org>
Thu, 10 Dec 2009 19:40:11 +0000 (11:40 -0800)
committerKai Backman <kaib@golang.org>
Thu, 10 Dec 2009 19:40:11 +0000 (11:40 -0800)
R=rsc
https://golang.org/cl/165044

src/pkg/syscall/zerrors_linux_arm.go

index 908cdd3e24b08b63135a4d8bfc106f866cc4d846..1d7ff449859f0855c56e576d95679f3bd64356e2 100644 (file)
@@ -153,6 +153,9 @@ const (
        SIGIO           = 0x1d;
        SIGQUIT         = 0x3;
        SIGCLD          = 0x11;
+       SHUT_RD         = 0;
+       SHUT_RDWR       = 0x2;
+       SHUT_WR         = 0x1;
        SIGABRT         = 0x6;
        SIGTRAP         = 0x5;
        SIGVTALRM       = 0x1a;