2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2012-02-18 22:11:44 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package sync
|
|
|
|
|
2013-08-13 04:45:36 -06:00
|
|
|
import "unsafe"
|
|
|
|
|
2012-02-18 22:11:44 -07: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)
|
|
|
|
|
2016-09-22 07:48:30 -06:00
|
|
|
// SemacquireMutex is like Semacquire, but for profiling contended Mutexes.
|
|
|
|
func runtime_SemacquireMutex(*uint32)
|
|
|
|
|
2012-02-18 22:11:44 -07: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.
|
|
|
|
func runtime_Semrelease(s *uint32)
|
2013-08-13 04:45:36 -06:00
|
|
|
|
2016-01-24 11:23:48 -07:00
|
|
|
// Approximation of notifyList in runtime/sema.go. Size and alignment must
|
|
|
|
// agree.
|
|
|
|
type notifyList struct {
|
|
|
|
wait uint32
|
|
|
|
notify uint32
|
|
|
|
lock uintptr
|
|
|
|
head unsafe.Pointer
|
|
|
|
tail unsafe.Pointer
|
2014-08-24 02:41:23 -06:00
|
|
|
}
|
2013-08-13 04:45:36 -06:00
|
|
|
|
2016-01-24 11:23:48 -07:00
|
|
|
// See runtime/sema.go for documentation.
|
|
|
|
func runtime_notifyListAdd(l *notifyList) uint32
|
2013-08-13 04:45:36 -06:00
|
|
|
|
2016-01-24 11:23:48 -07:00
|
|
|
// See runtime/sema.go for documentation.
|
|
|
|
func runtime_notifyListWait(l *notifyList, t uint32)
|
2013-08-13 04:45:36 -06:00
|
|
|
|
2016-01-24 11:23:48 -07:00
|
|
|
// See runtime/sema.go for documentation.
|
|
|
|
func runtime_notifyListNotifyAll(l *notifyList)
|
|
|
|
|
|
|
|
// See runtime/sema.go for documentation.
|
|
|
|
func runtime_notifyListNotifyOne(l *notifyList)
|
|
|
|
|
|
|
|
// Ensure that sync and runtime agree on size of notifyList.
|
|
|
|
func runtime_notifyListCheck(size uintptr)
|
2013-08-13 04:45:36 -06:00
|
|
|
func init() {
|
2016-01-24 11:23:48 -07:00
|
|
|
var n notifyList
|
|
|
|
runtime_notifyListCheck(unsafe.Sizeof(n))
|
2013-08-13 04:45:36 -06:00
|
|
|
}
|
2015-02-20 01:50:56 -07:00
|
|
|
|
|
|
|
// Active spinning runtime support.
|
|
|
|
// runtime_canSpin returns true is spinning makes sense at the moment.
|
|
|
|
func runtime_canSpin(i int) bool
|
|
|
|
|
|
|
|
// runtime_doSpin does active spinning.
|
|
|
|
func runtime_doSpin()
|