diff options
author | Shenghou Ma <minux.ma@gmail.com> | 2013-12-02 10:02:38 +1100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2013-12-02 10:02:38 +1100 |
commit | df10efcca47e7360ce74f0ed32282991c8be150f (patch) | |
tree | a9081c46be2e9ef7462711967118db9dfd9349b9 | |
parent | 005aafa63f16a353e775136f95cea69d07373d1f (diff) |
go.blogs/content/go12.article: OS thread limit adjustment func is in runtime/debug, not runtime
R=golang-dev, adg
https://golang.org/cl/35750043
-rw-r--r-- | content/go12.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/go12.article b/content/go12.article index d13adcd..0ab1651 100644 --- a/content/go12.article +++ b/content/go12.article @@ -52,7 +52,7 @@ On the other end, new restrictions on [[http://golang.org/doc/go1.2#thread_limit][the number of operating system threads]] should prevent misbehaving programs from consuming all the resources of a machine. (These limits may be adjusted using new functions in the -[[http://golang.org/pkg/runtime/][`runtime` package]].) +[[http://golang.org/pkg/runtime/debug][`runtime/debug` package]].) Finally, among the [[http://golang.org/doc/go1.2#library][many changes to the standard library]], significant changes include |