1// Copyright 2011 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//go:build openbsd && mips64 6 7package runtime 8 9//go:noescape 10func thrsleep(ident uintptr, clock_id int32, tsp *timespec, lock uintptr, abort *uint32) int32 11 12//go:noescape 13func thrwakeup(ident uintptr, n int32) int32 14 15func osyield() 16 17//go:nosplit 18func osyield_no_g() { 19 osyield() 20} 21