30 lines
485 B
Go
30 lines
485 B
Go
package sync
|
|
|
|
func runtime_canSpin(i int) bool {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func runtime_doSpin() {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func throw(string) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func fatal(string) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func runtime_nanotime() int64 {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func runtime_SemacquireMutex(s *uint32, lifo bool, skipframes int) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func runtime_Semrelease(s *uint32, handoff bool, skipframes int) {
|
|
panic("not implemented")
|
|
}
|