Skip to content

Commit

Permalink
refactor: remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
jclab-joseph committed Nov 14, 2023
1 parent 907d376 commit e42f31f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/runtime/scheduler_any.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@

package runtime

import (
"internal/task"
"machine/uefi"
)
import "internal/task"

// Pause the current task for a given time.
//
Expand All @@ -24,9 +21,7 @@ func sleep(duration int64) {
func run() {
initHeap()
go func() {
uefi.DebugPrint("in go start", 0)
initAll()
uefi.DebugPrint("in after initAll", 0)
callMain()
schedulerDone = true
}()
Expand Down

0 comments on commit e42f31f

Please sign in to comment.