Files
llgo/runtime/internal/lib/internal/sync/sync.go

30 lines
485 B
Go
Raw Normal View History

2025-04-08 16:50:47 +08:00
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")
}