mirror of
https://github.com/golang/go
synced 2024-11-20 02:34:42 -07:00
58e3ae2fae
Reduces the size of m by ~8% on linux/amd64 (1040 bytes -> 960 bytes). There are also windows-specific fields, but they're currently referenced in OS-independent source files (but only when GOOS=="windows"). Change-Id: I13e1471ff585ccced1271f74209f8ed6df14c202 Reviewed-on: https://go-review.googlesource.com/16173 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
44 lines
923 B
Go
44 lines
923 B
Go
// Copyright 2014 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
|
|
|
|
import "unsafe"
|
|
|
|
type mOS struct{}
|
|
|
|
//go:noescape
|
|
func lwp_create(param *lwpparams) int32
|
|
|
|
//go:noescape
|
|
func sigaltstack(new, old *sigaltstackt)
|
|
|
|
//go:noescape
|
|
func sigaction(sig int32, new, old *sigactiont)
|
|
|
|
//go:noescape
|
|
func sigprocmask(how int32, new, old *sigset)
|
|
|
|
//go:noescape
|
|
func setitimer(mode int32, new, old *itimerval)
|
|
|
|
//go:noescape
|
|
func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
|
|
|
|
//go:noescape
|
|
func getrlimit(kind int32, limit unsafe.Pointer) int32
|
|
|
|
func raise(sig int32)
|
|
func raiseproc(sig int32)
|
|
|
|
//go:noescape
|
|
func sys_umtx_sleep(addr *uint32, val, timeout int32) int32
|
|
|
|
//go:noescape
|
|
func sys_umtx_wakeup(addr *uint32, val int32) int32
|
|
|
|
func osyield()
|
|
|
|
const stackSystem = 0
|