diff options
| author | Dmitriy Vyukov <dvyukov@google.com> | 2013-02-23 08:48:02 +0400 |
|---|---|---|
| committer | Dmitriy Vyukov <dvyukov@google.com> | 2013-02-23 08:48:02 +0400 |
| commit | 353ce60f6e8e5898efec62945fbafd33bc28a37b (patch) | |
| tree | 2b170231608cd192911c2f58c616ce4afe01004b /src/pkg/runtime/export_test.go | |
| parent | 1d7faf91dfe6aaa5f43b74b19bc014937ea92337 (diff) | |
| download | go-353ce60f6e8e5898efec62945fbafd33bc28a37b.tar.xz | |
runtime: implement local work queues (in preparation for new scheduler)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7402047
Diffstat (limited to 'src/pkg/runtime/export_test.go')
| -rw-r--r-- | src/pkg/runtime/export_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pkg/runtime/export_test.go b/src/pkg/runtime/export_test.go index c1971cd2d1..062aea2487 100644 --- a/src/pkg/runtime/export_test.go +++ b/src/pkg/runtime/export_test.go @@ -61,3 +61,9 @@ func ParForIters(desc *ParFor, tid uint32) (uint32, uint32) { begin, end := parforiters(desc, uintptr(tid)) return uint32(begin), uint32(end) } + +func testSchedLocalQueue() +func testSchedLocalQueueSteal() + +var TestSchedLocalQueue1 = testSchedLocalQueue +var TestSchedLocalQueueSteal1 = testSchedLocalQueueSteal |
