From 413b4b5cb2211ef7983245c08ea4e84684d2b26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Fri, 2 Apr 2021 10:30:47 +0200 Subject: [PATCH] Small update --- block.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block.md b/block.md index 2f4f95e..2b118a4 100644 --- a/block.md +++ b/block.md @@ -43,7 +43,7 @@ The operations above are a subset of the [waiting states](https://github.com/gol - [`time.Sleep`](https://golang.org/pkg/time/#Sleep) (but [`time.After`](https://golang.org/pkg/time/#After), [`time.Tick`](https://golang.org/pkg/time/#Tick) and other channel based wrappers will show up) - GC - Syscalls (e.g. [Network I/O](./examples/block-net/), File I/O, etc.) -- Internal Locks (e.g. for [stopTheWorld](https://github.com/golang/go/blob/go1.15.7/src/runtime/proc.go#L900)) +- Runtime Internal Locks (e.g. for [stopTheWorld](https://github.com/golang/go/blob/go1.15.7/src/runtime/proc.go#L900)) - Blocking in [cgo](https://golang.org/cmd/cgo/) calls - Events that block forever (e.g. sending/receiving on nil channels)