Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for libc_notify_is_valid_token (0.25 sec)

  1. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_pthread_cond_signal pthread_cond_signal "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_notify_is_valid_token notify_is_valid_token "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_xpc_date_create_from_current xpc_date_create_from_current "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin_arm64.s

    	MOVD	8(R0), R1	// arg 2 value
    	MOVD	0(R0), R0	// arg 1 key
    	BL	libc_pthread_setspecific(SB)
    	RET
    
    TEXT runtime·osinit_hack_trampoline(SB),NOSPLIT,$0
    	MOVD	$0, R0	// arg 1 val
    	BL	libc_notify_is_valid_token(SB)
    	BL	libc_xpc_date_create_from_current(SB)
    	RET
    
    // syscall calls a function in libc on behalf of the syscall package.
    // syscall takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_amd64.s

    	MOVQ	8(DI), SI	// arg 2 sig
    	MOVQ	0(DI), DI	// arg 1 thread
    	CALL	libc_pthread_kill(SB)
    	RET
    
    TEXT runtime·osinit_hack_trampoline(SB),NOSPLIT,$0
    	MOVQ	$0, DI	// arg 1 val
    	CALL	libc_notify_is_valid_token(SB)
    	CALL	libc_xpc_date_create_from_current(SB)
    	RET
    
    // syscall calls a function in libc on behalf of the syscall package.
    // syscall takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top