Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _cgo_maybe_run_preinit (0.26 sec)

  1. src/runtime/cgo/gcc_libinit_windows.c

    		abort();
    	 }
    
    	 InitializeCriticalSection(&runtime_init_cs);
    }
    
    // Make sure that the preinit sequence has run.
    void
    _cgo_maybe_run_preinit() {
    	 if (!InterlockedExchangeAdd(&runtime_init_once_done, 0)) {
    			if (InterlockedIncrement(&runtime_init_once_gate) == 1) {
    				 _cgo_preinit_init();
    				 InterlockedIncrement(&runtime_init_once_done);
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top