Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for thrkill (0.41 sec)

  1. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }
    	SYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }
    	SYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }
    	SYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }
    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_riscv64.go

    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS_JAIL_ATTACH              = 436 // { int jail_attach(int jid); }
    	SYS_EXTATTR_LIST_FD          = 437 // { ssize_t extattr_list_fd(int fd, int attrnamespace, void *data, size_t nbytes); }
    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/runtime/sys_linux_loong64.s

    	MOVV	$SYS_kill, R11
    	SYSCALL
    	RET
    
    // func getpid() int
    TEXT ·getpid(SB),NOSPLIT|NOFRAME,$0-8
    	MOVV	$SYS_getpid, R11
    	SYSCALL
    	MOVV	R4, ret+0(FP)
    	RET
    
    // func tgkill(tgid, tid, sig int)
    TEXT ·tgkill(SB),NOSPLIT|NOFRAME,$0-24
    	MOVV	tgid+0(FP), R4
    	MOVV	tid+8(FP), R5
    	MOVV	sig+16(FP), R6
    	MOVV	$SYS_tgkill, R11
    	SYSCALL
    	RET
    
    // func setitimer(mode int32, new, old *itimerval)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/runtime/sys_freebsd_arm.s

    	RET
    
    TEXT runtime·thr_self(SB),NOSPLIT,$0-4
    	// thr_self(&0(FP))
    	MOVW $ret+0(FP), R0 // arg 1
    	MOVW $SYS_thr_self, R7
    	SWI $0
    	RET
    
    TEXT runtime·thr_kill(SB),NOSPLIT,$0-8
    	// thr_kill(tid, sig)
    	MOVW tid+0(FP), R0	// arg 1 id
    	MOVW sig+4(FP), R1	// arg 2 signal
    	MOVW $SYS_thr_kill, R7
    	SWI $0
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$0
    	// getpid
    	MOVW $SYS_getpid, R7
    	SWI $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    // rt_sigaction is implemented in assembly.
    //
    //go:noescape
    func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    
    func getpid() int
    func tgkill(tgid, tid, sig int)
    
    // signalM sends a signal to mp.
    func signalM(mp *m, sig int) {
    	tgkill(getpid(), int(mp.procid), sig)
    }
    
    // validSIGPROF compares this signal delivery's code against the signal sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore.go

    		}
    		// replace with OpCopy
    		v.SetArgs1(v.MemoryArg())
    		v.Aux = nil
    		v.AuxInt = 0
    		v.Op = OpCopy
    	}
    }
    
    // elimUnreadAutos deletes stores (and associated bookkeeping ops VarDef and VarKill)
    // to autos that are never read from.
    func elimUnreadAutos(f *Func) {
    	// Loop over all ops that affect autos taking note of which
    	// autos we need and also stores that we might be able to
    	// eliminate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_amd64.s

    	RET
    
    TEXT runtime·thr_self(SB),NOSPLIT,$0-8
    	// thr_self(&0(FP))
    	LEAQ	ret+0(FP), DI	// arg 1
    	MOVL	$SYS_thr_self, AX
    	SYSCALL
    	RET
    
    TEXT runtime·thr_kill(SB),NOSPLIT,$0-16
    	// thr_kill(tid, sig)
    	MOVQ	tid+0(FP), DI	// arg 1 id
    	MOVQ	sig+8(FP), SI	// arg 2 sig
    	MOVL	$SYS_thr_kill, AX
    	SYSCALL
    	RET
    
    TEXT runtime·raiseproc(SB),NOSPLIT,$0
    	// getpid
    	MOVL	$SYS_getpid, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. src/runtime/crash_cgo_test.go

    		t.Skipf("no signals on %s", runtime.GOOS)
    	}
    
    	for _, test := range []string{"Segv", "SegvInCgo", "TgkillSegv", "TgkillSegvInCgo"} {
    		test := test
    
    		// The tgkill variants only run on Linux.
    		if runtime.GOOS != "linux" && strings.HasPrefix(test, "Tgkill") {
    			continue
    		}
    
    		t.Run(test, func(t *testing.T) {
    			if test == "SegvInCgo" && runtime.GOOS == "ios" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top