Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for sys_kill (0.26 sec)

  1. src/runtime/sys_linux_loong64.s

    	SYSCALL
    	MOVW	R4, R5	// arg 2 tid
    	MOVW	R23, R4	// arg 1 pid
    	MOVW	sig+0(FP), R6	// arg 3
    	MOVV	$SYS_tgkill, R11
    	SYSCALL
    	RET
    
    // func raiseproc(sig uint32)
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOVV	$SYS_getpid, R11
    	SYSCALL
    	//MOVW	R4, R4	// arg 1 pid
    	MOVW	sig+0(FP), R5	// arg 2
    	MOVV	$SYS_kill, R11
    	SYSCALL
    	RET
    
    // func getpid() int
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_READV          = 120 // { ssize_t sys_readv(int fd, const struct iovec *iovp, int iovcnt); }
    	SYS_WRITEV         = 121 // { ssize_t sys_writev(int fd, const struct iovec *iovp, int iovcnt); }
    	SYS_KILL           = 122 // { int sys_kill(int pid, int signum); }
    	SYS_FCHOWN         = 123 // { int sys_fchown(int fd, uid_t uid, gid_t gid); }
    	SYS_FCHMOD         = 124 // { int sys_fchmod(int fd, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_arm.s

    	SWI	$0
    	MOVW	R0, R1	// arg 2 tid
    	MOVW	R4, R0	// arg 1 pid
    	MOVW	sig+0(FP), R2	// arg 3
    	MOVW	$SYS_tgkill, R7
    	SWI	$0
    	RET
    
    TEXT	runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOVW	$SYS_getpid, R7
    	SWI	$0
    	// arg 1 tid already in R0 from getpid
    	MOVW	sig+0(FP), R1	// arg 2 - signal
    	MOVW	$SYS_kill, R7
    	SWI	$0
    	RET
    
    TEXT ·getpid(SB),NOSPLIT,$0-4
    	MOVW	$SYS_getpid, R7
    	SWI	$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/runtime/sys_freebsd_amd64.s

    #define CLOCK_MONOTONIC		4
    #define AMD64_SET_FSBASE	129
    
    #define SYS_exit		1
    #define SYS_read		3
    #define SYS_write		4
    #define SYS_open		5
    #define SYS_close		6
    #define SYS_getpid		20
    #define SYS_kill		37
    #define SYS_sigaltstack		53
    #define SYS_munmap		73
    #define SYS_madvise		75
    #define SYS_setitimer		83
    #define SYS_fcntl		92
    #define SYS_sysarch		165
    #define SYS___sysctl		202
    #define SYS_clock_gettime	232
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. api/except.txt

    pkg syscall (openbsd-386), const SYS_GETRUSAGE = 117
    pkg syscall (openbsd-386), const SYS_GETTIMEOFDAY = 116
    pkg syscall (openbsd-386), const SYS_KEVENT = 270
    pkg syscall (openbsd-386), const SYS_KILL = 37
    pkg syscall (openbsd-386), const SYS_LSTAT = 293
    pkg syscall (openbsd-386), const SYS_NANOSLEEP = 240
    pkg syscall (openbsd-386), const SYS_SELECT = 93
    pkg syscall (openbsd-386), const SYS_SETITIMER = 83
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_amd64.s

    #define SYS_clone		56
    #define SYS_exit		60
    #define SYS_kill		62
    #define SYS_sigaltstack 	131
    #define SYS_arch_prctl		158
    #define SYS_gettid		186
    #define SYS_futex		202
    #define SYS_sched_getaffinity	204
    #define SYS_timer_create	222
    #define SYS_timer_settime	223
    #define SYS_timer_delete	226
    #define SYS_clock_gettime	228
    #define SYS_exit_group		231
    #define SYS_tgkill		234
    #define SYS_openat		257
    #define SYS_faccessat		269
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	MOVW	R3, R14
    	SYSCALL	$SYS_gettid
    	MOVW	R3, R4	// arg 2 tid
    	MOVW	R14, R3	// arg 1 pid
    	MOVW	sig+0(FP), R5	// arg 3
    	SYSCALL	$SYS_tgkill
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	SYSCALL	$SYS_getpid
    	MOVW	R3, R3	// arg 1 pid
    	MOVW	sig+0(FP), R4	// arg 2
    	SYSCALL	$SYS_kill
    	RET
    
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	SYSCALL $SYS_getpid
    	MOVD	R3, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_386.s

    	MOVL	$SYS_gettid, AX
    	INVOKE_SYSCALL
    	MOVL	AX, CX	// arg 2 tid
    	MOVL	sig+0(FP), DX	// arg 3 signal
    	MOVL	$SYS_tgkill, AX
    	INVOKE_SYSCALL
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$12
    	MOVL	$SYS_getpid, AX
    	INVOKE_SYSCALL
    	MOVL	AX, BX	// arg 1 pid
    	MOVL	sig+0(FP), CX	// arg 2 signal
    	MOVL	$SYS_kill, AX
    	INVOKE_SYSCALL
    	RET
    
    TEXT ·getpid(SB),NOSPLIT,$0-4
    	MOVL	$SYS_getpid, AX
    	INVOKE_SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_arm64.s

    #define SYS_rt_sigaction	134
    #define SYS_rt_sigprocmask	135
    #define SYS_sigaltstack		132
    #define SYS_madvise		233
    #define SYS_mincore		232
    #define SYS_getpid		172
    #define SYS_gettid		178
    #define SYS_kill		129
    #define SYS_tgkill		131
    #define SYS_futex		98
    #define SYS_sched_getaffinity	123
    #define SYS_exit_group		94
    #define SYS_clock_gettime	113
    #define SYS_faccessat		48
    #define SYS_socket		198
    #define SYS_connect		203
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_386.go

    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                  = 39  // { pid_t getppid(void); }
    	SYS_DUP                      = 41  // { int dup(u_int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top