mirror of
https://github.com/golang/go
synced 2024-11-19 22:44:45 -07:00
aea4de80f9
Also adds missing nosplit to unminit. Fixes #13964. Change-Id: I07d93a8c872a255a89f91f808b66c889f0a6a69c Reviewed-on: https://go-review.googlesource.com/18658 Reviewed-by: Ian Lance Taylor <iant@golang.org>
16 lines
315 B
Go
16 lines
315 B
Go
// Copyright 2011 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.
|
|
|
|
package runtime
|
|
|
|
const (
|
|
_NSIG = 33
|
|
_SI_USER = 0
|
|
_SS_DISABLE = 4
|
|
_RLIMIT_AS = 10
|
|
_SIG_BLOCK = 1
|
|
_SIG_UNBLOCK = 2
|
|
_SIG_SETMASK = 3
|
|
)
|