Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for thr_self (0.1 sec)

  1. src/runtime/sys_freebsd_arm64.s

    	MUL	R3, R4
    	SUB	R4, R5
    	MOVW	$1000, R4
    	MUL	R4, R5
    	MOVD	R5, 16(RSP)
    
    	// nanosleep(&ts, 0)
    	ADD	$8, RSP, R0
    	MOVD	$0, R1
    	MOVD	$SYS_nanosleep, R8
    	SVC
    	RET
    
    // func thr_self() thread
    TEXT runtime·thr_self(SB),NOSPLIT,$8-8
    	MOVD	$ptr-8(SP), R0	// arg 1 &8(SP)
    	MOVD	$SYS_thr_self, R8
    	SVC
    	MOVD	ptr-8(SP), R0
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func thr_kill(t thread, sig int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_386.s

    TEXT runtime·write1(SB),NOSPLIT,$-4
    	MOVL	$SYS_write, AX
    	INT	$0x80
    	JAE	2(PC)
    	NEGL	AX			// caller expects negative errno
    	MOVL	AX, ret+12(FP)
    	RET
    
    TEXT runtime·thr_self(SB),NOSPLIT,$8-4
    	// thr_self(&0(FP))
    	LEAL	ret+0(FP), AX
    	MOVL	AX, 4(SP)
    	MOVL	$SYS_thr_self, AX
    	INT	$0x80
    	RET
    
    TEXT runtime·thr_kill(SB),NOSPLIT,$-4
    	// thr_kill(tid, sig)
    	MOVL	$SYS_thr_kill, AX
    	INT	$0x80
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/runtime/sys_freebsd_riscv64.s

    	MUL	A1, A0, A0
    	MOV	$1000000000, A1
    	DIV	A1, A0, A2
    	MOV	A2, 8(X2)
    	REM	A1, A0, A3
    	MOV	A3, 16(X2)
    	ADD	$8, X2, A0
    	MOV	ZERO, A1
    	MOV	$SYS_nanosleep, T0
    	ECALL
    	RET
    
    // func thr_self() thread
    TEXT runtime·thr_self(SB),NOSPLIT,$8-8
    	MOV	$ptr-8(SP), A0	// arg 1 &8(SP)
    	MOV	$SYS_thr_self, T0
    	ECALL
    	MOV	ptr-8(SP), A0
    	MOV	A0, ret+0(FP)
    	RET
    
    // func thr_kill(t thread, sig int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1/generated.proto

    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    message TokenRequestSpec {
      // Audiences are the intendend audiences of the token. A recipient of a
      // token must identify themself with an identifier in the list of
      // audiences of the token, and otherwise should reject the token. A
      // token issued for multiple audiences may be used to authenticate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1/generated.proto

    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    message TokenRequestSpec {
      // Audiences are the intendend audiences of the token. A recipient of a
      // token must identify themself with an identifier in the list of
      // audiences of the token, and otherwise should reject the token. A
      // token issued for multiple audiences may be used to authenticate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/apis/authentication/types.go

    }
    
    // TokenRequestSpec contains client provided parameters of a token request.
    type TokenRequestSpec struct {
    	// Audiences are the intended audiences of the token. A recipient of a
    	// token must identify themself with an identifier in the list of
    	// audiences of the token, and otherwise should reject the token. A
    	// token issued for multiple audiences may be used to authenticate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1/types_swagger_doc_generated.go

    	"":                  "TokenRequestSpec contains client provided parameters of a token request.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top