aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/extern.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-03-23 17:01:17 -0700
committerRuss Cox <rsc@golang.org>2010-03-23 17:01:17 -0700
commit2b7d147f1a916f26df6ee15ed0d54c30c7bede43 (patch)
tree975c81a35455346620a3ef101dacf2d6c7cb453a /src/pkg/runtime/extern.go
parent32c39fa1b7dd8601addc0e7e80ce6004703834c6 (diff)
downloadgo-2b7d147f1a916f26df6ee15ed0d54c30c7bede43.tar.xz
runtime: add Callers
cut copies of traceback from 6 to 1. R=r CC=golang-dev https://golang.org/cl/703041
Diffstat (limited to 'src/pkg/runtime/extern.go')
-rw-r--r--src/pkg/runtime/extern.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go
index b4d903c30c..2ee20cd35a 100644
--- a/src/pkg/runtime/extern.go
+++ b/src/pkg/runtime/extern.go
@@ -10,8 +10,6 @@
*/
package runtime
-// These functions are implemented in the base runtime library, ../../runtime/.
-
// Gosched yields the processor, allowing other goroutines to run. It does not
// suspend the current goroutine, so execution resumes automatically.
func Gosched()