github.com/fjballest/golang@v0.0.0-20151209143359-e4c5fe594ca8/src/runtime/os2_linux_mips64x.go (about) 1 // Copyright 2015 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // +build linux 6 // +build mips64 mips64le 7 8 package runtime 9 10 const ( 11 _SS_DISABLE = 2 12 _NSIG = 65 13 _SI_USER = 0 14 _SIG_BLOCK = 1 15 _SIG_UNBLOCK = 2 16 _SIG_SETMASK = 3 17 _RLIMIT_AS = 6 18 ) 19 20 type sigset [2]uint64 21 22 type rlimit struct { 23 rlim_cur uintptr 24 rlim_max uintptr 25 }