blob: 928a39cfca9347e26984a149be8391a821c07cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package machine
import (
_ "unsafe"
)
//
// This file provides access to runtime package that would not otherwise
// be permitted due to linker dependencies.
//
//go:linkname gosched runtime.Gosched
func gosched()
|