Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __atomic_load_n (1.49 sec)

  1. src/runtime/cgo/gcc_libinit.c

    		abort();
    	}
    }
    
    uintptr_t
    _cgo_wait_runtime_init_done(void) {
    	void (*pfn)(struct context_arg*);
    	pfn = __atomic_load_n(&cgo_context_function, __ATOMIC_CONSUME);
    
    	int done = 2;
    	if (__atomic_load_n(&runtime_init_done, __ATOMIC_CONSUME) != done) {
    		pthread_mutex_lock(&runtime_init_mu);
    		while (__atomic_load_n(&runtime_init_done, __ATOMIC_CONSUME) == 0) {
    			pthread_cond_wait(&runtime_init_cond, &runtime_init_mu);
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top