blob: 0b2afb01eb9c6eb1431c5f6f105687e3302d2b51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2016 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.
// +build !amd64
package runtime
// rt_sigaction calls the rt_sigaction system call. It is implemented in assembly.
//go:noescape
func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
|