Files
llgo/runtime/internal/lib/internal/sync/sync.go
2025-04-11 16:28:44 +08:00

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")
}