Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for libc_pthread_attr_init (0.16 sec)

  1. 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)
  2. src/runtime/sys_aix_ppc64.s

    	CSYSCALL()
    	MOVW	R3, ret+24(FP)
    	RET
    
    // Runs on OS stack, called from runtime·pthread_attr_init.
    TEXT runtime·pthread_attr_init1(SB),NOSPLIT,$0-12
    	MOVD	attr+0(FP), R3
    	MOVD	$libpthread_attr_init(SB), R12
    	CSYSCALL()
    	MOVW	R3, ret+8(FP)
    	RET
    
    // Runs on OS stack, called from runtime·pthread_attr_setstacksize.
    TEXT runtime·pthread_attr_setstacksize1(SB),NOSPLIT,$0-20
    	MOVD	attr+0(FP), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top