mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 18:47:47 +00:00
14 lines
310 B
Go
14 lines
310 B
Go
package runtime
|
|
|
|
// This file contains support code for the sync package.
|
|
|
|
//go:linkname registerPoolCleanup sync.runtime_registerPoolCleanup
|
|
func registerPoolCleanup(cleanup func()) {
|
|
// Ignore.
|
|
}
|
|
|
|
//go:linkname notifyListCheck sync.runtime_notifyListCheck
|
|
func notifyListCheck(size uintptr) {
|
|
// Ignore.
|
|
}
|