From ca9128f18fe75878ba2d5e0df09ae755c085f72a Mon Sep 17 00:00:00 2001 From: Srdjan Petrovic Date: Fri, 17 Apr 2015 17:27:07 -0700 Subject: runtime: merge clone0 and clone We initially added clone0 to handle the case when G or M don't exist, but it turns out that we could have just modified clone. (It also helps that the function we're invoking in clone0 no longer needs arguments.) As a side-effect, newosproc0 is now supported on all linux archs. Change-Id: Ie603af75d8f164310fc16446052d83743961f3ca Reviewed-on: https://go-review.googlesource.com/9164 Reviewed-by: David Crawshaw --- src/runtime/export_linux_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/runtime/export_linux_test.go (limited to 'src/runtime/export_linux_test.go') diff --git a/src/runtime/export_linux_test.go b/src/runtime/export_linux_test.go new file mode 100644 index 0000000000..c8b9746676 --- /dev/null +++ b/src/runtime/export_linux_test.go @@ -0,0 +1,9 @@ +// Copyright 2015 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. + +// Export guts for testing. + +package runtime + +var NewOSProc0 = newosproc0 -- cgit v1.3