mirror of
https://github.com/rwinkhart/sys.git
synced 2026-08-28 04:46:44 -04:00
For golang/go#48708 Change-Id: Ieb5fdb5eb571af836268b69d3f1066ef8497a7b7 GitHub-Last-Rev: 59e24d8fdb37af8412544e59d473e440f8aac499 GitHub-Pull-Request: golang/sys#118 Reviewed-on: https://go-review.googlesource.com/c/sys/+/353398 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
22 lines
537 B
Go
22 lines
537 B
Go
// Copyright 2021 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.
|
|
|
|
//go:build linux
|
|
// +build linux
|
|
|
|
package unix
|
|
|
|
import "runtime"
|
|
|
|
// SysvShmCtl performs control operations on the shared memory segment
|
|
// specified by id.
|
|
func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) {
|
|
if runtime.GOARCH == "arm" ||
|
|
runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le" {
|
|
cmd |= ipc_64
|
|
}
|
|
|
|
return shmctl(id, cmd, desc)
|
|
}
|