Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,021 for Rusage (0.12 sec)

  1. src/runtime/pprof/pprof_rusage.go

    		rssToBytes = 1
    	case "illumos", "solaris":
    		rssToBytes = uintptr(syscall.Getpagesize())
    	default:
    		panic("unsupported OS")
    	}
    
    	var rusage syscall.Rusage
    	err := syscall.Getrusage(syscall.RUSAGE_SELF, &rusage)
    	if err == nil {
    		fmt.Fprintf(w, "# MaxRSS = %d\n", uintptr(rusage.Maxrss)*rssToBytes)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 792 bytes
    - Viewed (0)
  2. src/os/exec_unix.go

    	}
    
    	var (
    		status syscall.WaitStatus
    		rusage syscall.Rusage
    		pid1   int
    		e      error
    	)
    	for {
    		pid1, e = syscall.Wait4(p.Pid, &status, 0, &rusage)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != nil {
    		return nil, NewSyscallError("wait", e)
    	}
    	p.pidDeactivate(statusDone)
    	return &ProcessState{
    		pid:    pid1,
    		status: status,
    		rusage: &rusage,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/os/pidfd_linux.go

    		return nil, syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	var (
    		info   unix.SiginfoChild
    		rusage syscall.Rusage
    		e      syscall.Errno
    	)
    	for {
    		_, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PIDFD, handle, uintptr(unsafe.Pointer(&info)), syscall.WEXITED, uintptr(unsafe.Pointer(&rusage)), 0)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    		return nil, NewSyscallError("waitid", e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/os/exec_windows.go

    	return time.Duration(n*100) * time.Nanosecond
    }
    
    func (p *ProcessState) userTime() time.Duration {
    	return ftToDuration(&p.rusage.UserTime)
    }
    
    func (p *ProcessState) systemTime() time.Duration {
    	return ftToDuration(&p.rusage.KernelTime)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/os/exec_posix.go

    }
    
    // ProcessState stores information about a process, as reported by Wait.
    type ProcessState struct {
    	pid    int                // The process's id.
    	status syscall.WaitStatus // System-dependent status info.
    	rusage *syscall.Rusage
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/runtime/pprof/rusage_test.go

    package pprof
    
    import (
    	"syscall"
    	"time"
    )
    
    func init() {
    	diffCPUTimeImpl = diffCPUTimeRUsage
    }
    
    func diffCPUTimeRUsage(f func()) (user, system time.Duration) {
    	ok := true
    	var before, after syscall.Rusage
    
    	err := syscall.Getrusage(syscall.RUSAGE_SELF, &before)
    	if err != nil {
    		ok = false
    	}
    
    	f()
    
    	err = syscall.Getrusage(syscall.RUSAGE_SELF, &after)
    	if err != nil {
    		ok = false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 753 bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_norusage.go

    // license that can be found in the LICENSE file.
    
    //go:build !unix && !windows
    
    package pprof
    
    import (
    	"io"
    )
    
    // Stub call for platforms that don't support rusage.
    func addMaxRSS(w io.Writer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 309 bytes
    - Viewed (0)
  8. src/syscall/syscall_wasip1.go

    func (w WaitStatus) TrapCause() int     { return 0 }
    
    // Rusage is a placeholder to allow compilation of the [os/exec] package
    // because we need Go programs to be portable across platforms. WASI does
    // not have a mechanism to to spawn processes so there is no reason for an
    // application to take a dependency on this type.
    type Rusage struct {
    	Utime Timeval
    	Stime Timeval
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/syscall/syscall_bsd.go

    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    //sys	wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	var status _C_int
    	wpid, err = wait4(pid, &status, options, rusage)
    	if wstatus != nil {
    		*wstatus = WaitStatus(status)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sys	wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	var status _C_int
    	var r Pid_t
    	err = ERESTART
    	// AIX wait4 may return with ERESTART errno, while the processus is still
    	// active.
    	for err == ERESTART {
    		r, err = wait4(Pid_t(pid), &status, options, rusage)
    	}
    	wpid = int(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top