]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/internal/sys: regenerate zgoos_*.go files
authorTobias Klauser <tklauser@distanz.ch>
Mon, 5 Nov 2018 11:39:11 +0000 (12:39 +0100)
committerTobias Klauser <tobias.klauser@gmail.com>
Mon, 5 Nov 2018 15:09:00 +0000 (15:09 +0000)
zgoos_aix.go is missing GoosJs, the order of GoosAndroid and GoosAix is
mixed up in all files and GoosHurd was added after CL 146023 introduced
GOOS=hurd.

Change-Id: I7e2f5a15645272e9020cfca86e44c364fc072a2b
Reviewed-on: https://go-review.googlesource.com/c/147397
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
15 files changed:
src/runtime/internal/sys/zgoos_aix.go
src/runtime/internal/sys/zgoos_android.go
src/runtime/internal/sys/zgoos_darwin.go
src/runtime/internal/sys/zgoos_dragonfly.go
src/runtime/internal/sys/zgoos_freebsd.go
src/runtime/internal/sys/zgoos_hurd.go [new file with mode: 0644]
src/runtime/internal/sys/zgoos_js.go
src/runtime/internal/sys/zgoos_linux.go
src/runtime/internal/sys/zgoos_nacl.go
src/runtime/internal/sys/zgoos_netbsd.go
src/runtime/internal/sys/zgoos_openbsd.go
src/runtime/internal/sys/zgoos_plan9.go
src/runtime/internal/sys/zgoos_solaris.go
src/runtime/internal/sys/zgoos_windows.go
src/runtime/internal/sys/zgoos_zos.go

index 9ce5b3434f9fd9b4bd97ac2b2dd26408e0b9f4f2..909bfc5e934e17d33cd1372e6c9e5d7b4a33ce83 100644 (file)
@@ -6,11 +6,13 @@ package sys
 
 const GOOS = `aix`
 
-const GoosAndroid = 0
 const GoosAix = 1
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
+const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
 const GoosNetbsd = 0
index 36a5768ab65597b5ecbda2ce56736ec167810322..434ce46712d7b179d2b7e3fb994e2b4f4d502d9d 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `android`
 
-const GoosAndroid = 1
 const GoosAix = 0
+const GoosAndroid = 1
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index 10c0e88e9a93040463c1d94dbc83d6271fb631b4..b645d1cf5fd5184245078cde72bfd9b41e39d6de 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `darwin`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 1
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index 5cb47cb84e920ace0cebe2e62d2306dd5a2a95ba..154cec370fe03c79f5daaf5559d9502fff1a9a5a 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `dragonfly`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 1
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index 470406ce5ff7fe1046d0557b924e1db3e8f950ca..5f41c0344507fd1db9dea2d7573bc573362346ed 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `freebsd`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 1
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
diff --git a/src/runtime/internal/sys/zgoos_hurd.go b/src/runtime/internal/sys/zgoos_hurd.go
new file mode 100644 (file)
index 0000000..53f7fc3
--- /dev/null
@@ -0,0 +1,23 @@
+// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.
+
+// +build hurd
+
+package sys
+
+const GOOS = `hurd`
+
+const GoosAix = 0
+const GoosAndroid = 0
+const GoosDarwin = 0
+const GoosDragonfly = 0
+const GoosFreebsd = 0
+const GoosHurd = 1
+const GoosJs = 0
+const GoosLinux = 0
+const GoosNacl = 0
+const GoosNetbsd = 0
+const GoosOpenbsd = 0
+const GoosPlan9 = 0
+const GoosSolaris = 0
+const GoosWindows = 0
+const GoosZos = 0
index cc8eef080fb80457d8e4ac6a05179e33ded7262e..c6cca49bd9b9d67c6d92a586ad38335360b61d6e 100644 (file)
@@ -6,10 +6,12 @@ package sys
 
 const GOOS = `js`
 
+const GoosAix = 0
 const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 1
 const GoosLinux = 0
 const GoosNacl = 0
index 76235b748c1c26fae6a00dad5cc3ae8f8a14e3a8..088dbc105b0a9a7fc0d21618c5eecd05708bf65f 100644 (file)
@@ -7,11 +7,12 @@ package sys
 
 const GOOS = `linux`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 1
 const GoosNacl = 0
index 6d28b596678c821b7ecbce03908f8be170f4f497..65bec4af9e85a403bc6c2fb30c8c142033217572 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `nacl`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 1
index ef8d938ddbc8312c7de8ce79171999a6568bf2b4..93d0fa7e11303fea3b7954978f884ee12c90a49f 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `netbsd`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index 2e438473964ca79739ee4a78f7812713eaa971f0..79193593f5cffb21f032ce6e49b4c560500e7709 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `openbsd`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index ed598dcaaca8e29b78bb8beb6ce79ea06c7347c7..2b95e0808019746a50264c51d3a85685ed08868e 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `plan9`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index fe690df6c222083d26ddcc9f93727284236692a2..6e3988aed0c2e993f97483d1d26e4d9eaf60694d 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `solaris`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index ea7c43bdf4d9a4b1ff63ce891ab8771b70b4285c..a56e12544a4cf8ac9847b52141872e427a2fc837 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `windows`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0
index d4027cf876890040c065c106f55e77169d2ffa7d..0f56e46002569cc7967f20d3c0bfb902f968950a 100644 (file)
@@ -6,11 +6,12 @@ package sys
 
 const GOOS = `zos`
 
-const GoosAndroid = 0
 const GoosAix = 0
+const GoosAndroid = 0
 const GoosDarwin = 0
 const GoosDragonfly = 0
 const GoosFreebsd = 0
+const GoosHurd = 0
 const GoosJs = 0
 const GoosLinux = 0
 const GoosNacl = 0