Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for setrlimit (0.16 sec)

  1. src/syscall/zsyscall_openbsd_amd64.go

    func setrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setrlimit_trampoline()
    
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_arm64.go

    func setrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setrlimit_trampoline()
    
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_ppc64.go

    func setrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setrlimit_trampoline()
    
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_386.go

    func setrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_setrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setrlimit_trampoline()
    
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setrlimit(resource int, lim *Rlimit) (err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_SETRLIMIT<<4, uintptr(resource), uintptr(unsafe.Pointer(lim)))
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   Setns(fd int, nstype int) (err error) = SYS_SETNS
    //sys	Setpriority(which int, who int, prio int) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error) = SYS_SETPGID
    //sysnb	Setrlimit(resource int, lim *Rlimit) (err error)
    //sysnb	Setregid(rgid int, egid int) (err error) = SYS_SETREGID
    //sysnb	Setreuid(ruid int, euid int) (err error) = SYS_SETREUID
    //sysnb	Setsid() (pid int, err error) = SYS_SETSID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    		}
    	}()
    	return true
    }
    
    // SetLimit limits the number of active goroutines in this group to at most n.
    // A negative value indicates no limit.
    //
    // Any subsequent call to the Go method will block until it can add an active
    // goroutine without exceeding the configured limit.
    //
    // The limit must not be modified while any goroutines in the group are active.
    func (g *Group) SetLimit(n int) {
    	if n < 0 {
    		g.sem = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// Skip over segments with zero file size. Their file offsets can have
    		// arbitrary values, see b/195427553.
    		if p.Filesz == 0 {
    			continue
    		}
    		segLimit := p.Off + p.Memsz
    		// The segment must overlap the mapping.
    		if p.Type == elf.PT_LOAD && mapOff < segLimit && p.Off < mapLimit {
    			// If the mapping offset is strictly less than the page aligned segment
    			// offset, then this mapping comes from a different segment, fixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_wasip1.go

    	}
    	errno := fd_fdstat_set_flags(int32(fd), flags)
    	return errnoErr(errno)
    }
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    const (
    	RLIMIT_NOFILE = iota
    )
    
    func Getrlimit(which int, lim *Rlimit) error {
    	return ENOSYS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Gettimeofday(tv *Timeval) (err error)
    //sysnb	Getuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top