Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for libc_pthread_attr_init (0.34 sec)

  1. src/runtime/os3_solaris.go

    //go:linkname libc_munmap libc_munmap
    //go:linkname libc_open libc_open
    //go:linkname libc_pthread_attr_destroy libc_pthread_attr_destroy
    //go:linkname libc_pthread_attr_getstack libc_pthread_attr_getstack
    //go:linkname libc_pthread_attr_init libc_pthread_attr_init
    //go:linkname libc_pthread_attr_setdetachstate libc_pthread_attr_setdetachstate
    //go:linkname libc_pthread_attr_setstack libc_pthread_attr_setstack
    //go:linkname libc_pthread_create libc_pthread_create
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd.go

    	return ret
    }
    func pthread_create_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    // in a system library, with the libc_ prefix missing.
    
    //go:cgo_import_dynamic libc_pthread_attr_init pthread_attr_init "libpthread.so"
    //go:cgo_import_dynamic libc_pthread_attr_destroy pthread_attr_destroy "libpthread.so"
    //go:cgo_import_dynamic libc_pthread_attr_getstacksize pthread_attr_getstacksize "libpthread.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_ppc64.s

    // A single int32 result is returned in R3.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$32
    	MOVD	0(R3), R3		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$32
    	MOVD	0(R3), R3		// arg 1 - attr
    	CALL	libc_pthread_attr_destroy(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd_arm64.s

    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVD	0(R0), R0		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$0
    	MOVD	0(R0), R0		// arg 1 - attr
    	CALL	libc_pthread_attr_destroy(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_riscv64.s

    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$8
    	MOV	0(X10), X10		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$8
    	MOV	0(X10), X10		// arg 1 - attr
    	CALL	libc_pthread_attr_destroy(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_amd64.s

    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), DI		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), DI		// arg 1 - attr
    	CALL	libc_pthread_attr_destroy(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    }
    func proc_regionfilename_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    // in a system library, with the libc_ prefix missing.
    
    //go:cgo_import_dynamic libc_pthread_attr_init pthread_attr_init "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_pthread_attr_getstacksize pthread_attr_getstacksize "/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)
  8. src/runtime/sys_darwin_arm64.s

    	// the value here doesn't really matter).
    	MOVD	$0, R0
    
    	RET
    
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVD	0(R0), R0	// arg 1 attr
    	BL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_getstacksize_trampoline(SB),NOSPLIT,$0
    	MOVD	8(R0), R1	// arg 2 size
    	MOVD	0(R0), R0	// arg 1 attr
    	BL	libc_pthread_attr_getstacksize(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin_amd64.s

    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), DI // arg 1 attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_getstacksize_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI	// arg 2 size
    	MOVQ	0(DI), DI	// arg 1 attr
    	CALL	libc_pthread_attr_getstacksize(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_arm.s

    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	0(R0), R0		// arg 1 attr
    	CALL	libc_pthread_attr_init(SB)
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	0(R0), R0		// arg 1 attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top