On Mon, Jun 7, 2021 at 9:16 AM FallingFromBed <
falling...@gmail.com> wrote:
>
> Newbie: Where I can get to see Go routines' white paper and its implementation ( Header file equivalent) in Go Repo'?
I'm not sure what you mean by a white paper, but I doubt that it
exists. Also, Go does not have header files or anything equivalent to
them.
The implementation of goroutines is spread across a number of
different areas. The central point is the scheduler, which is mostly
in
https://golang.org/src/runtime/proc.go.
Ian