summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/runtime_unsafe.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-02-24 20:05:55 +0000
committergVisor bot <gvisor-bot@google.com>2021-02-24 20:05:55 +0000
commit0328d62d64d68c26d7c62a8ae98799e831e59d07 (patch)
treef2e4a8065e59608616e26c5bc338bd1f3873b7ae /pkg/sync/runtime_unsafe.go
parent0bca8624f6f1b3c7cbffc35a400d3e009b85e3a3 (diff)
parentba4dfa7172a00f8b104a75a4655fe3de1e4a94c9 (diff)
Merge release-20210208.0-89-gba4dfa717 (automated)
Diffstat (limited to 'pkg/sync/runtime_unsafe.go')
-rw-r--r--pkg/sync/runtime_unsafe.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/sync/runtime_unsafe.go b/pkg/sync/runtime_unsafe.go
index 119ff832a..158985709 100644
--- a/pkg/sync/runtime_unsafe.go
+++ b/pkg/sync/runtime_unsafe.go
@@ -56,12 +56,16 @@ func goready(gp uintptr, traceskip int)
// Values for the reason argument to gopark, from Go's src/runtime/runtime2.go.
const (
- WaitReasonSelect uint8 = 9
+ WaitReasonSelect uint8 = 9
+ WaitReasonChanReceive uint8 = 14
+ WaitReasonSemacquire uint8 = 18
)
// Values for the traceEv argument to gopark, from Go's src/runtime/trace.go.
const (
+ TraceEvGoBlockRecv byte = 23
TraceEvGoBlockSelect byte = 24
+ TraceEvGoBlockSync byte = 25
)
// Rand32 returns a non-cryptographically-secure random uint32.