Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 180 for syscall1 (0.09 sec)

  1. src/syscall/ztypes_linux_mips.go

    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs types_linux.go
    
    package syscall
    
    const (
    	sizeofPtr      = 0x4
    	sizeofShort    = 0x2
    	sizeofInt      = 0x4
    	sizeofLong     = 0x4
    	sizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    type (
    	_C_short     int16
    	_C_int       int32
    	_C_long      int32
    	_C_long_long int64
    )
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_mipsle.go

    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs types_linux.go
    
    package syscall
    
    const (
    	sizeofPtr      = 0x4
    	sizeofShort    = 0x2
    	sizeofInt      = 0x4
    	sizeofLong     = 0x4
    	sizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    type (
    	_C_short     int16
    	_C_int       int32
    	_C_long      int32
    	_C_long_long int64
    )
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    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

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    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/syscall/ztypes_linux_386.go

    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs types_linux.go
    
    //go:build 386 && linux
    
    package syscall
    
    const (
    	sizeofPtr      = 0x4
    	sizeofShort    = 0x2
    	sizeofInt      = 0x4
    	sizeofLong     = 0x4
    	sizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    type (
    	_C_short     int16
    	_C_int       int32
    	_C_long      int32
    	_C_long_long int64
    )
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/syscall/syscall_solaris.go

    // it in our own nicer implementation, either here or in
    // syscall_solaris.go or syscall_unix.go.
    
    package syscall
    
    import "unsafe"
    
    const _F_DUP2FD_CLOEXEC = F_DUP2FD_CLOEXEC
    
    func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. docs/metrics/v3.md

    | `minio_system_process_syscall_read_total`          | `counter` | Total read SysCalls to the kernel. /proc/[pid]/io syscr                                                        | `server` |
    | `minio_system_process_syscall_write_total`         | `counter` | Total write SysCalls to the kernel. /proc/[pid]/io syscw                                                       | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    		// sigPerThreadSyscall is the same signal used by glibc for
    		// per-thread syscalls on Linux. We use it for the same purpose
    		// in non-cgo binaries. Since this signal is not _SigNotify,
    		// there is nothing more to do once we run the syscall.
    		runPerThreadSyscall()
    		return
    	}
    
    	if sig == sigPreempt && debug.asyncpreemptoff == 0 && !delayedSignal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/ld_test.go

    	out, err := testenv.Command(t, testenv.GoToolPath(t), argv...).CombinedOutput()
    	if err != nil {
    		t.Fatalf("build failure: %s\n%s\n", err, string(out))
    	}
    
    	found := false
    	const want = "invoking archiver with syscall.Exec"
    	for _, l := range strings.Split(string(out), "\n") {
    		if strings.HasPrefix(l, want) {
    			found = true
    			break
    		}
    	}
    
    	if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_arm64.go

    // mksysnum_openbsd.pl
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    	SYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, \
    	SYS_OPEN           = 5   // { int sys_open(const char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
Back to top