Call *post*GoReadyWakeSuppression() after goready.

We were calling preGoReadyWakeSuppression, which must have been a typo.

PiperOrigin-RevId: 490337652
This commit is contained in:
Nicolas Lacasse
2022-11-22 14:30:19 -08:00
committed by gVisor bot
parent 03e92949e5
commit 4fa2196b6a
+1 -1
View File
@@ -74,7 +74,7 @@ func Goready(gp uintptr, traceskip int, wakep bool) {
}
goready(gp, traceskip)
if supportsWakeSuppression && !wakep {
preGoReadyWakeSuppression()
postGoReadyWakeSuppression()
}
}