go/armv6l.patch
Thomas Hipp d6a1d1bfdf Accepting request 527061 from home:thipp:branches:devel:languages:go
- Update to go1.9
  There are two changes to the language: adding support for type aliases and
  defining when implementations may fuse floating point operations. Most of the
  changes are in the implementation of the toolchain, runtime, and libraries. As
  always, the release maintains the Go 1 promise of compatibility. We expect
  almost all Go programs to continue to compile and run as before.
  The release adds transparent monotonic time support, parallelizes compilation
  of functions within a package, better supports test helper functions, includes
  a new bit manipulation package, and has a new concurrent map type.
  Remove patches:
    - fix_certificates_lookup.patch
    - runtime-bump-MaxGomaxprocs.patch

OBS-URL: https://build.opensuse.org/request/show/527061
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/go?expand=0&rev=299
2017-09-19 12:42:07 +00:00

14 lines
346 B
Diff

diff --git a/src/runtime/os_linux_generic.go b/src/runtime/os_linux_generic.go
index a16d140..8351ffb 100644
--- a/src/runtime/os_linux_generic.go
+++ b/src/runtime/os_linux_generic.go
@@ -11,7 +11,7 @@ package runtime
const (
_SS_DISABLE = 2
- _NSIG = 65
+ _NSIG = 64
_SI_USER = 0
_SIG_BLOCK = 0
_SIG_UNBLOCK = 1