Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Oct 17, 2024
1 parent b0a0fc8 commit 59c8303
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion trusted_os/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,14 @@ var irqHandler = make(map[int]func())
func wakeHandler(g uint32, p uint32)
func wakeHandlerPreGo123(g uint32, p uint32)

// handlerCutover is the semver representation of the cut over between wakeHandler implementations above.
// Anything less that this should use the legacy PreGo123 version.
const handlerCutover = "1.23.0"

var (
// wHandler is the wakeHandler implementation to be used, 1.23+ by default.
wHandler = wakeHandler
wHandlerCutover = *semver.New("1.23.0")
wHandlerCutover = *semver.New(handlerCutover)
)

func configureWakeHandler(rtVersion semver.Version) {
Expand Down

0 comments on commit 59c8303

Please sign in to comment.