aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_linux_generic.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2018-02-16 11:26:14 +0100
committerTobias Klauser <tobias.klauser@gmail.com>2018-02-17 18:35:41 +0000
commit1b1c8b34d129eefcdbad234914df999581e62b2f (patch)
tree45c2c52d9abf69e571a14746af046805708599dc /src/runtime/os_linux_generic.go
parent9402a2bff75907668f8488ea9d32c56fdf101f04 (diff)
downloadgo-1b1c8b34d129eefcdbad234914df999581e62b2f.tar.gz
go-1b1c8b34d129eefcdbad234914df999581e62b2f.zip
runtime: remove unused getrlimit function
Follow CL 93655 which removed the (commented-out) usage of this function. Also remove unused constant _RLIMIT_AS and type rlimit. Change-Id: Ifb6e6b2104f4c2555269f8ced72bfcae24f5d5e9 Reviewed-on: https://go-review.googlesource.com/94775 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/os_linux_generic.go')
-rw-r--r--src/runtime/os_linux_generic.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/runtime/os_linux_generic.go b/src/runtime/os_linux_generic.go
index f672162eae..14810e3cc3 100644
--- a/src/runtime/os_linux_generic.go
+++ b/src/runtime/os_linux_generic.go
@@ -19,7 +19,6 @@ const (
_SIG_BLOCK = 0
_SIG_UNBLOCK = 1
_SIG_SETMASK = 2
- _RLIMIT_AS = 9
)
// It's hard to tease out exactly how big a Sigset is, but
@@ -27,11 +26,6 @@ const (
// are running, this is right.
type sigset [2]uint32
-type rlimit struct {
- rlim_cur uintptr
- rlim_max uintptr
-}
-
var sigset_all = sigset{^uint32(0), ^uint32(0)}
//go:nosplit