1
0
mirror of https://github.com/golang/go synced 2024-09-25 03:10:12 -06:00

runtime: add link to design doc for new scheduler

R=golang-dev, remyoudompheng, bradfitz
CC=golang-dev
https://golang.org/cl/7419049
This commit is contained in:
Russ Cox 2013-03-04 10:36:45 -05:00
parent 7c68f7876a
commit 69c90985b3

View File

@ -18,6 +18,8 @@
// P - processor, a resource that is required to execute Go code. // P - processor, a resource that is required to execute Go code.
// M must have an associated P to execute Go code, however it can be // M must have an associated P to execute Go code, however it can be
// blocked or in a syscall w/o an associated P. // blocked or in a syscall w/o an associated P.
//
// Design doc at http://golang.org/s/go11sched.
typedef struct Sched Sched; typedef struct Sched Sched;
struct Sched { struct Sched {