Retro68/gcc/libgo/go/sync/runtime.go

58 lines
2.0 KiB
Go
Raw Normal View History

// Copyright 2012 The Go Authors. All rights reserved.
2012-03-27 23:13:14 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package sync
2014-09-21 17:33:12 +00:00
import "unsafe"
2012-03-27 23:13:14 +00:00
// defined in package runtime
// Semacquire waits until *s > 0 and then atomically decrements it.
// It is intended as a simple sleep primitive for use by the synchronization
// library and should not be used directly.
func runtime_Semacquire(s *uint32)
// SemacquireMutex is like Semacquire, but for profiling contended Mutexes.
2018-12-28 15:30:48 +00:00
// If lifo is true, queue waiter at the head of wait queue.
// skipframes is the number of frames to omit during tracing, counting from
// runtime_SemacquireMutex's caller.
func runtime_SemacquireMutex(s *uint32, lifo bool, skipframes int)
2012-03-27 23:13:14 +00:00
// Semrelease atomically increments *s and notifies a waiting goroutine
// if one is blocked in Semacquire.
// It is intended as a simple wakeup primitive for use by the synchronization
// library and should not be used directly.
2018-12-28 15:30:48 +00:00
// If handoff is true, pass count directly to the first waiter.
// skipframes is the number of frames to omit during tracing, counting from
// runtime_Semrelease's caller.
func runtime_Semrelease(s *uint32, handoff bool, skipframes int)
2014-09-21 17:33:12 +00:00
// See runtime/sema.go for documentation.
func runtime_notifyListAdd(l *notifyList) uint32
// See runtime/sema.go for documentation.
func runtime_notifyListWait(l *notifyList, t uint32)
// See runtime/sema.go for documentation.
func runtime_notifyListNotifyAll(l *notifyList)
2014-09-21 17:33:12 +00:00
// See runtime/sema.go for documentation.
func runtime_notifyListNotifyOne(l *notifyList)
2014-09-21 17:33:12 +00:00
// Ensure that sync and runtime agree on size of notifyList.
func runtime_notifyListCheck(size uintptr)
2014-09-21 17:33:12 +00:00
func init() {
var n notifyList
runtime_notifyListCheck(unsafe.Sizeof(n))
2014-09-21 17:33:12 +00:00
}
2017-04-10 11:32:00 +00:00
// Active spinning runtime support.
2019-06-02 15:48:37 +00:00
// runtime_canSpin reports whether spinning makes sense at the moment.
2017-04-10 11:32:00 +00:00
func runtime_canSpin(i int) bool
// runtime_doSpin does active spinning.
func runtime_doSpin()
2018-12-28 15:30:48 +00:00
func runtime_nanotime() int64