aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2022-02-16 11:30:04 -0800
committerIan Lance Taylor <iant@golang.org>2022-02-16 12:20:10 -0800
commit24ca97325cab7bc454c785d55f37120fe7ea6f74 (patch)
tree0dff7e34fe65a75ba82e4a13d69991fdaea7c5eb /libgo/go/runtime
parent6d66bd25dc84e362f56ffe66667f6c9017ba73d0 (diff)
downloadgcc-24ca97325cab7bc454c785d55f37120fe7ea6f74.zip
gcc-24ca97325cab7bc454c785d55f37120fe7ea6f74.tar.gz
gcc-24ca97325cab7bc454c785d55f37120fe7ea6f74.tar.bz2
libgo: restore building on Solaris
Add build tags and a few other changes so that libgo builds on Solaris. Patch partially from Rainer Orth. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/386215
Diffstat (limited to 'libgo/go/runtime')
-rw-r--r--libgo/go/runtime/os3_solaris.go8
-rw-r--r--libgo/go/runtime/stubs2.go2
2 files changed, 9 insertions, 1 deletions
diff --git a/libgo/go/runtime/os3_solaris.go b/libgo/go/runtime/os3_solaris.go
index ec23ce2..6c82574 100644
--- a/libgo/go/runtime/os3_solaris.go
+++ b/libgo/go/runtime/os3_solaris.go
@@ -36,6 +36,14 @@ func solarisExecutablePath() string {
return executablePath
}
+func setProcessCPUProfiler(hz int32) {
+ setProcessCPUProfilerTimer(hz)
+}
+
+func setThreadCPUProfiler(hz int32) {
+ setThreadCPUProfilerHz(hz)
+}
+
//go:nosplit
func validSIGPROF(mp *m, c *sigctxt) bool {
return true
diff --git a/libgo/go/runtime/stubs2.go b/libgo/go/runtime/stubs2.go
index 0b9e605..5871092 100644
--- a/libgo/go/runtime/stubs2.go
+++ b/libgo/go/runtime/stubs2.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build !aix && !darwin && !js && !openbsd && !plan9 && !solaris && !windows
+//go:build !js && !plan9 && !windows
package runtime