mirror of
https://github.com/golang/go
synced 2024-11-19 11:24:51 -07:00
fe5ef5c9d7
Before CL 8214 (use .plt instead of .got on Solaris) Solaris used a dynamic linking scheme that didn't permit lazy binding. To speed program startup, Go binaries only used it for a small number of symbols required by the runtime. Other symbols were resolved on demand on first use, and were cached for subsequent use. This required some moderately complex code in the syscall package. CL 8214 changed the way dynamic linking is implemented, and now lazy binding is supported. As now all symbols are resolved lazily by the dynamic loader, there is no need for the complex code in the syscall package that did the same. This CL makes Go programs link directly with the necessary shared libraries and deletes the lazy-loading code implemented in Go. Change-Id: Ifd7275db72de61b70647242e7056dd303b1aee9e Reviewed-on: https://go-review.googlesource.com/9184 Reviewed-by: Minux Ma <minux@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
38 lines
808 B
Go
38 lines
808 B
Go
// 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.
|
|
|
|
// +build solaris
|
|
|
|
package syscall
|
|
|
|
import "unsafe"
|
|
|
|
//go:cgo_import_dynamic libc_Getpgid getpgid "libc.so"
|
|
//go:cgo_import_dynamic libc_Getpgrp getpgrp "libc.so"
|
|
|
|
//go:linkname libc_Getpgid libc_Getpgid
|
|
//go:linkname libc_Getpgrp libc_Getpgrp
|
|
|
|
var (
|
|
libc_Getpgid,
|
|
libc_Getpgrp libcFunc
|
|
)
|
|
|
|
func Getpgid(pid int) (pgid int, err error) {
|
|
r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgid)), 1, uintptr(pid), 0, 0, 0, 0, 0)
|
|
pgid = int(r0)
|
|
if e1 != 0 {
|
|
err = e1
|
|
}
|
|
return
|
|
}
|
|
|
|
func Getpgrp() (pgrp int) {
|
|
r0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgrp)), 0, 0, 0, 0, 0, 0, 0)
|
|
pgrp = int(r0)
|
|
return
|
|
}
|
|
|
|
var Ioctl = ioctl
|