Files
tinygo/src/runtime/scheduler_coroutines.go
T
2020-03-17 12:16:10 +01:00

10 lines
248 B
Go

// +build scheduler.coroutines
package runtime
// getSystemStackPointer returns the current stack pointer of the system stack.
// This is always the current stack pointer.
func getSystemStackPointer() uintptr {
return getCurrentStackPointer()
}