mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
70 lines
1.5 KiB
Go
70 lines
1.5 KiB
Go
package runtime
|
|
|
|
import "internal/task"
|
|
|
|
const schedulerDebug = false
|
|
|
|
var timerQueue *timerNode
|
|
|
|
// Simple logging, for debugging.
|
|
func scheduleLog(msg string) {
|
|
if schedulerDebug {
|
|
println("---", msg)
|
|
}
|
|
}
|
|
|
|
// Simple logging with a task pointer, for debugging.
|
|
func scheduleLogTask(msg string, t *task.Task) {
|
|
if schedulerDebug {
|
|
println("---", msg, t)
|
|
}
|
|
}
|
|
|
|
// Simple logging with a channel and task pointer.
|
|
func scheduleLogChan(msg string, ch *channel, t *task.Task) {
|
|
if schedulerDebug {
|
|
println("---", msg, ch, t)
|
|
}
|
|
}
|
|
|
|
func timerQueueAdd(tn *timerNode) {
|
|
q := &timerQueue
|
|
for ; *q != nil; q = &(*q).next {
|
|
if tn.whenTicks() < (*q).whenTicks() {
|
|
// this will finish earlier than the next - insert here
|
|
break
|
|
}
|
|
}
|
|
tn.next = *q
|
|
*q = tn
|
|
}
|
|
|
|
func timerQueueRemove(t *timer) *timerNode {
|
|
for q := &timerQueue; *q != nil; q = &(*q).next {
|
|
if (*q).timer == t {
|
|
scheduleLog("removed timer")
|
|
n := *q
|
|
*q = (*q).next
|
|
return n
|
|
}
|
|
}
|
|
scheduleLog("did not remove timer")
|
|
return nil
|
|
}
|
|
|
|
// Goexit terminates the currently running goroutine. No other goroutines are affected.
|
|
func Goexit() {
|
|
panicOrGoexit(nil, panicGoexit)
|
|
}
|
|
|
|
//go:linkname fips_getIndicator crypto/internal/fips140.getIndicator
|
|
func fips_getIndicator() uint8 {
|
|
return task.Current().FipsIndicator
|
|
}
|
|
|
|
//go:linkname fips_setIndicator crypto/internal/fips140.setIndicator
|
|
func fips_setIndicator(indicator uint8) {
|
|
// This indicator is stored per goroutine.
|
|
task.Current().FipsIndicator = indicator
|
|
}
|