Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for Setpriority (0.43 sec)

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

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_darwin_arm64.go

    func Getpriority(which int, who int) (prio int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)
    	prio = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getpriority_trampoline()
    
    //go:cgo_import_dynamic libc_getpriority getpriority "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    func Getpriority(which int, who int) (prio int, err error) {
    	r0, _, e1 := syscall_syscall(libc_getpriority_trampoline_addr, uintptr(which), uintptr(who), 0)
    	prio = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getpriority_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    func Getpriority(which int, who int) (prio int, err error) {
    	r0, _, e1 := syscall_syscall(libc_getpriority_trampoline_addr, uintptr(which), uintptr(who), 0)
    	prio = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getpriority_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    func Getpriority(which int, who int) (prio int, err error) {
    	r0, _, e1 := syscall_syscall(libc_getpriority_trampoline_addr, uintptr(which), uintptr(who), 0)
    	prio = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getpriority_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_SETPRIORITY              = 96  // { int setpriority(int which, int who, int prio); }
    	SYS_SOCKET                   = 97  // { int socket(int domain, int type, int protocol); }
    	SYS_CONNECT                  = 98  // { int connect(int s, caddr_t name, int namelen); }
    	SYS_GETPRIORITY              = 100 // { int getpriority(int which, int who); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top