Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _cgo_preinit_init (0.27 sec)

  1. src/runtime/cgo/gcc_libinit_windows.c

    static int runtime_init_done;
    
    uintptr_t x_cgo_pthread_key_created;
    void (*x_crosscall2_ptr)(void (*fn)(void *), void *, int, size_t);
    
    // Pre-initialize the runtime synchronization objects
    void
    _cgo_preinit_init() {
    	 runtime_init_wait = CreateEvent(NULL, TRUE, FALSE, NULL);
    	 if (runtime_init_wait == NULL) {
    		fprintf(stderr, "runtime: failed to create runtime initialization wait event.\n");
    		abort();
    	 }
    
    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