9 строки
248 Б
Go
9 строки
248 Б
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()
|
|
}
|