Skip to content

Commit

Permalink
chore: fix missing funcs on windows (zeromicro#2825)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevwan authored and byops committed Jan 31, 2023
1 parent 0442a35 commit d4a9b01
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/proc/shutdown+polyfill.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,14 @@ func AddWrapUpListener(fn func()) func() {
return fn
}

// SetTimeToForceQuit does nothing on windows.
func SetTimeToForceQuit(duration time.Duration) {
}

// Shutdown does nothing on windows.
func Shutdown() {
}

// WrapUp does nothing on windows.
func WrapUp() {
}

0 comments on commit d4a9b01

Please sign in to comment.