diff options
| author | Gibheer <gibheer+git@zero-knowledge.org> | 2024-09-05 19:38:25 +0200 | 
|---|---|---|
| committer | Gibheer <gibheer+git@zero-knowledge.org> | 2024-09-05 19:38:25 +0200 | 
| commit | 6ea4d2c82de80efc87708e5e182034b7c6c2019e (patch) | |
| tree | 35c0856a929040216c82153ca62d43b27530a887 /vendor/golang.org/x/sys/unix/syscall_linux_arm.go | |
| parent | 6f64eeace1b66639b9380b44e88a8d54850a4306 (diff) | |
lib/pq is out of maintenance for some time now, so switch to the newer
more active library. Looks like it finally stabilized after a long time.
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_linux_arm.go')
| -rw-r--r-- | vendor/golang.org/x/sys/unix/syscall_linux_arm.go | 28 | 
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_linux_arm.go b/vendor/golang.org/x/sys/unix/syscall_linux_arm.go index 856ad1d..cd2dd79 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux_arm.go @@ -3,7 +3,6 @@  // license that can be found in the LICENSE file.  //go:build arm && linux -// +build arm,linux  package unix @@ -171,33 +170,6 @@ func Getrlimit(resource int, rlim *Rlimit) (err error) {  	return  } -//sysnb	setrlimit(resource int, rlim *rlimit32) (err error) = SYS_SETRLIMIT - -func Setrlimit(resource int, rlim *Rlimit) (err error) { -	err = Prlimit(0, resource, rlim, nil) -	if err != ENOSYS { -		return err -	} - -	rl := rlimit32{} -	if rlim.Cur == rlimInf64 { -		rl.Cur = rlimInf32 -	} else if rlim.Cur < uint64(rlimInf32) { -		rl.Cur = uint32(rlim.Cur) -	} else { -		return EINVAL -	} -	if rlim.Max == rlimInf64 { -		rl.Max = rlimInf32 -	} else if rlim.Max < uint64(rlimInf32) { -		rl.Max = uint32(rlim.Max) -	} else { -		return EINVAL -	} - -	return setrlimit(resource, &rl) -} -  func (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) }  func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) }  | 
