Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for sys_op_4 (0.14 sec)

  1. src/runtime/sys_netbsd_arm.s

    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		3
    
    #define SWI_OS_NETBSD			0xa00000
    #define SYS_exit			SWI_OS_NETBSD | 1
    #define SYS_read			SWI_OS_NETBSD | 3
    #define SYS_write			SWI_OS_NETBSD | 4
    #define SYS_open			SWI_OS_NETBSD | 5
    #define SYS_close			SWI_OS_NETBSD | 6
    #define SYS_getpid			SWI_OS_NETBSD | 20
    #define SYS_kill			SWI_OS_NETBSD | 37
    #define SYS_munmap			SWI_OS_NETBSD | 73
    #define SYS_madvise			SWI_OS_NETBSD | 75
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64 && linux
    
    package unix
    
    const (
    	SYS_READ                    = 5000
    	SYS_WRITE                   = 5001
    	SYS_OPEN                    = 5002
    	SYS_CLOSE                   = 5003
    	SYS_STAT                    = 5004
    	SYS_FSTAT                   = 5005
    	SYS_LSTAT                   = 5006
    	SYS_POLL                    = 5007
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_arm.s

    #include "go_tls.h"
    #include "textflag.h"
    
    // for EABI, as we don't support OABI
    #define SYS_BASE 0x0
    
    #define SYS_exit (SYS_BASE + 1)
    #define SYS_read (SYS_BASE + 3)
    #define SYS_write (SYS_BASE + 4)
    #define SYS_open (SYS_BASE + 5)
    #define SYS_close (SYS_BASE + 6)
    #define SYS_getpid (SYS_BASE + 20)
    #define SYS_kill (SYS_BASE + 37)
    #define SYS_sigaltstack (SYS_BASE + 53)
    #define SYS_munmap (SYS_BASE + 73)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    //go:build s390x && linux
    
    package unix
    
    const (
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    	SYS_CLOSE                   = 6
    	SYS_RESTART_SYSCALL         = 7
    	SYS_CREAT                   = 8
    	SYS_LINK                    = 9
    	SYS_UNLINK                  = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    //go:build sparc64 && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL         = 0
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    	SYS_CLOSE                   = 6
    	SYS_WAIT4                   = 7
    	SYS_CREAT                   = 8
    	SYS_LINK                    = 9
    	SYS_UNLINK                  = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_riscv64.go

    	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, \
    	SYS_CLOSE          = 6   // { int sys_close(int fd); }
    	SYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_mipsx.s

    //
    // System calls and other sys.stuff for mips, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_exit		4001
    #define SYS_read		4003
    #define SYS_write		4004
    #define SYS_open		4005
    #define SYS_close		4006
    #define SYS_getpid		4020
    #define SYS_kill		4037
    #define SYS_brk			4045
    #define SYS_mmap		4090
    #define SYS_munmap		4091
    #define SYS_setitimer		4104
    #define SYS_clone		4120
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && linux
    
    package unix
    
    const (
    	SYS_READ                    = 0
    	SYS_WRITE                   = 1
    	SYS_OPEN                    = 2
    	SYS_CLOSE                   = 3
    	SYS_STAT                    = 4
    	SYS_FSTAT                   = 5
    	SYS_LSTAT                   = 6
    	SYS_POLL                    = 7
    	SYS_LSEEK                   = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_RESTART_SYSCALL              = 0
    	SYS_EXIT                         = 1
    	SYS_FORK                         = 2
    	SYS_READ                         = 3
    	SYS_WRITE                        = 4
    	SYS_OPEN                         = 5
    	SYS_CLOSE                        = 6
    	SYS_CREAT                        = 8
    	SYS_LINK                         = 9
    	SYS_UNLINK                       = 10
    	SYS_EXECVE                       = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    	SYS_OPEN                         = 4005
    	SYS_CLOSE                        = 4006
    	SYS_WAITPID                      = 4007
    	SYS_CREAT                        = 4008
    	SYS_LINK                         = 4009
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top