Skip to content

Commit

Permalink
runtime: fix regression introduced by merging conflicting PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
aykevl authored and deadprogram committed Nov 21, 2024
1 parent dd1ebbd commit 5f252b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/runtime_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ func signal_recv() uint32 {
// again), and false otherwise.
func checkSignals() bool {
if receivedSignals.Load() != 0 && signalRecvWaiter != nil {
runqueuePushBack(signalRecvWaiter)
scheduleTask(signalRecvWaiter)
signalRecvWaiter = nil
return true
}
Expand Down

0 comments on commit 5f252b3

Please sign in to comment.