mirror of
https://github.com/golang/go.git
synced 2026-04-04 10:20:00 +09:00
When these packages are released as part of Go 1.18, Go 1.16 will no longer be supported, so we can remove the +build tags in these files. Ran go fix -fix=buildtag std cmd and then reverted the bootstrapDirs as defined in src/cmd/dist/buildtool.go, which need to continue to build with Go 1.4 for now. Also reverted src/vendor and src/cmd/vendor, which will need to be updated in their own repos first. Manual changes in runtime/pprof/mprof_test.go to adjust line numbers. For #41184. Change-Id: Ic0f93f7091295b6abc76ed5cd6e6746e1280861e Reviewed-on: https://go-review.googlesource.com/c/go/+/344955 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
39 lines
888 B
Go
39 lines
888 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !mips && !mipsle && !mips64 && !mips64le && !s390x && !ppc64 && linux
|
|
|
|
package runtime
|
|
|
|
const (
|
|
_SS_DISABLE = 2
|
|
_NSIG = 65
|
|
_SI_USER = 0
|
|
_SIG_BLOCK = 0
|
|
_SIG_UNBLOCK = 1
|
|
_SIG_SETMASK = 2
|
|
)
|
|
|
|
// It's hard to tease out exactly how big a Sigset is, but
|
|
// rt_sigprocmask crashes if we get it wrong, so if binaries
|
|
// are running, this is right.
|
|
type sigset [2]uint32
|
|
|
|
var sigset_all = sigset{^uint32(0), ^uint32(0)}
|
|
|
|
//go:nosplit
|
|
//go:nowritebarrierrec
|
|
func sigaddset(mask *sigset, i int) {
|
|
(*mask)[(i-1)/32] |= 1 << ((uint32(i) - 1) & 31)
|
|
}
|
|
|
|
func sigdelset(mask *sigset, i int) {
|
|
(*mask)[(i-1)/32] &^= 1 << ((uint32(i) - 1) & 31)
|
|
}
|
|
|
|
//go:nosplit
|
|
func sigfillset(mask *uint64) {
|
|
*mask = ^uint64(0)
|
|
}
|