Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 146 for sys_exit (0.25 sec)

  1. src/runtime/sys_linux_mipsx.s

    //go:build linux && (mips || mipsle)
    
    //
    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. src/runtime/sys_netbsd_arm.s

    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_riscv64.s

    #define AT_FDCWD -100
    #define CLOCK_REALTIME 0
    #define CLOCK_MONOTONIC 1
    
    #define SYS_brk			214
    #define SYS_clock_gettime	113
    #define SYS_clone		220
    #define SYS_close		57
    #define SYS_connect		203
    #define SYS_exit		93
    #define SYS_exit_group		94
    #define SYS_faccessat		48
    #define SYS_futex		98
    #define SYS_getpid		172
    #define SYS_gettid		178
    #define SYS_gettimeofday	169
    #define SYS_kill		129
    #define SYS_madvise		233
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_mips64x.s

    //go:build linux && (mips64 || mips64le)
    
    //
    // System calls and other sys.stuff for mips64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define AT_FDCWD -100
    
    #define SYS_exit		5058
    #define SYS_read		5000
    #define SYS_write		5001
    #define SYS_close		5003
    #define SYS_getpid		5038
    #define SYS_kill		5060
    #define SYS_mmap		5009
    #define SYS_munmap		5011
    #define SYS_setitimer		5036
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_linux_arm64.go

    	SYS_TIMERFD_GETTIME        = 87
    	SYS_UTIMENSAT              = 88
    	SYS_ACCT                   = 89
    	SYS_CAPGET                 = 90
    	SYS_CAPSET                 = 91
    	SYS_PERSONALITY            = 92
    	SYS_EXIT                   = 93
    	SYS_EXIT_GROUP             = 94
    	SYS_WAITID                 = 95
    	SYS_SET_TID_ADDRESS        = 96
    	SYS_UNSHARE                = 97
    	SYS_FUTEX                  = 98
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_linux_riscv64.go

    	SYS_TIMERFD_GETTIME        = 87
    	SYS_UTIMENSAT              = 88
    	SYS_ACCT                   = 89
    	SYS_CAPGET                 = 90
    	SYS_CAPSET                 = 91
    	SYS_PERSONALITY            = 92
    	SYS_EXIT                   = 93
    	SYS_EXIT_GROUP             = 94
    	SYS_WAITID                 = 95
    	SYS_SET_TID_ADDRESS        = 96
    	SYS_UNSHARE                = 97
    	SYS_FUTEX                  = 98
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_s390x.s

    // System calls and other system stuff for Linux s390x; see
    // /usr/include/asm/unistd.h for the syscall number definitions.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_exit                  1
    #define SYS_read                  3
    #define SYS_write                 4
    #define SYS_open                  5
    #define SYS_close                 6
    #define SYS_getpid               20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_linux_mips64.go

    	SYS_SOCKETPAIR             = 5052
    	SYS_SETSOCKOPT             = 5053
    	SYS_GETSOCKOPT             = 5054
    	SYS_CLONE                  = 5055
    	SYS_FORK                   = 5056
    	SYS_EXECVE                 = 5057
    	SYS_EXIT                   = 5058
    	SYS_WAIT4                  = 5059
    	SYS_KILL                   = 5060
    	SYS_UNAME                  = 5061
    	SYS_SEMGET                 = 5062
    	SYS_SEMOP                  = 5063
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_linux_mips64le.go

    	SYS_SOCKETPAIR             = 5052
    	SYS_SETSOCKOPT             = 5053
    	SYS_GETSOCKOPT             = 5054
    	SYS_CLONE                  = 5055
    	SYS_FORK                   = 5056
    	SYS_EXECVE                 = 5057
    	SYS_EXIT                   = 5058
    	SYS_WAIT4                  = 5059
    	SYS_KILL                   = 5060
    	SYS_UNAME                  = 5061
    	SYS_SEMGET                 = 5062
    	SYS_SEMOP                  = 5063
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_linux_amd64.go

    	SYS_SETSOCKOPT             = 54
    	SYS_GETSOCKOPT             = 55
    	SYS_CLONE                  = 56
    	SYS_FORK                   = 57
    	SYS_VFORK                  = 58
    	SYS_EXECVE                 = 59
    	SYS_EXIT                   = 60
    	SYS_WAIT4                  = 61
    	SYS_KILL                   = 62
    	SYS_UNAME                  = 63
    	SYS_SEMGET                 = 64
    	SYS_SEMOP                  = 65
    	SYS_SEMCTL                 = 66
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 10.1K bytes
    - Viewed (0)
Back to top