diff options
Diffstat (limited to 'libgo/go/runtime/export_windows_test.go')
-rw-r--r-- | libgo/go/runtime/export_windows_test.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libgo/go/runtime/export_windows_test.go b/libgo/go/runtime/export_windows_test.go index 7b269ecccb..536b398fd7 100644 --- a/libgo/go/runtime/export_windows_test.go +++ b/libgo/go/runtime/export_windows_test.go @@ -1,4 +1,4 @@ -// Copyright 2014 The Go Authors. All rights reserved. +// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. @@ -8,7 +8,11 @@ package runtime import "unsafe" -var TestingWER = &testingWER +var ( + TestingWER = &testingWER + OsYield = osyield + TimeBeginPeriodRetValue = &timeBeginPeriodRetValue +) func NumberOfProcessors() int32 { var info systeminfo |