Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 180 for Pid (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go

    	SYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }
    	SYS_UNLINK         = 10  // { int sys_unlink(const char *path); }
    	SYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }
    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }
    	SYS_UNLINK         = 10  // { int sys_unlink(const char *path); }
    	SYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }
    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_linux_mips64le.go

    func Getpgid(pid int) (pgid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)
    	pgid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getpid() (pid int) {
    	r0, _ := rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    	pid = int(r0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 40.3K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_linux_ppc64le.go

    func Getpgid(pid int) (pgid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_GETPGID, uintptr(pid), 0, 0)
    	pgid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getpid() (pid int) {
    	r0, _ := rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    	pid = int(r0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 41K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm.go

    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_LINK           = 9   // { int sys_link(const char *path, const char *link); }
    	SYS_UNLINK         = 10  // { int sys_unlink(const char *path); }
    	SYS_WAIT4          = 11  // { pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage); }
    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            for (DaemonStopEvent stopEvent : recentStopEvents) {
                Long pid = stopEvent.getPid();
                LOGGER.info("Previous Daemon (" + (pid == null ? "PID unknown" : pid) + ") stopped at " + stopEvent.getTimestamp() + " " + stopEvent.getReason());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_386.go

    	Type      uint8
    	Name      [256]int8
    	Pad_cgo_0 [1]byte
    }
    
    type Fsid struct {
    	X__val [2]int32
    }
    
    type Flock_t struct {
    	Type   int16
    	Whence int16
    	Start  int64
    	Len    int64
    	Pid    int32
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]uint8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    	Port     uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_386.go

    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_wait4_trampoline), uintptr(pid), uintptr(unsafe.Pointer(wstatus)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    		off := p.off - 1
    
    		pid, err := p.readVal()
    		if err != nil {
    			return err
    		}
    		if pid != math.MaxUint64 && pid > math.MaxInt32 {
    			return fmt.Errorf("processor ID %d is larger than maximum of %d", pid, uint64(math.MaxUint))
    		}
    
    		var pid32 int32
    		if pid == math.MaxUint64 {
    			pid32 = -1
    		} else {
    			pid32 = int32(pid)
    		}
    
    		v, err := p.readVal()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top