//go:build scheduler.tasks package runtime var systemStack uintptr // Implementation detail of the internal/task package. // It needs to store the system stack pointer somewhere, and needs to know how // many cores there are to do so. But it doesn't know the number of cores. Hence // why this is implemented in the runtime. func systemStackPtr() *uintptr { return &systemStack }