commit | 40c26fff1490f68cbb2d6a7942443df567e9bab4 | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Fri Sep 30 10:52:36 2011 -0700 |
committer | Rob Pike <r@golang.org> | Fri Sep 30 10:52:36 2011 -0700 |
tree | 52702b4840bd7f14dc9f58a07a73749516a1ca8d | |
parent | d324f2143b2b7dade319ce70261f3441041710e9 [diff] [blame] |
runtime: fix darwin build Add place holder for runtime.osyield. R=golang-dev CC=golang-dev https://golang.org/cl/5149049
diff --git a/src/pkg/runtime/darwin/thread.c b/src/pkg/runtime/darwin/thread.c index c5d8ba4..b35dae0 100644 --- a/src/pkg/runtime/darwin/thread.c +++ b/src/pkg/runtime/darwin/thread.c
@@ -496,3 +496,9 @@ } runtime·panicstring(runtime·sigtab[g->sig].name); } + +// TODO(rsc): place holder to fix build. +void +runtime·osyield(void) +{ +}