Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for _cgo_tsan_release (0.19 sec)

  1. src/runtime/cgo/gcc_traceback.c

            // Explicitly unpoison the memory to avoid that.
            // See issue #47543 for more details.
            __msan_unpoison(&arg, sizeof arg);
    #endif
    
    	_cgo_tsan_acquire();
    	(*cgoTraceback)(&arg);
    	_cgo_tsan_release();
    	sigtramp(sig, info, context);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 20:11:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    // (There is no actual lock, we are just telling TSAN that there is.)
    //
    // When we call from Go to C we call _cgo_tsan_acquire.
    // When the C function returns we call _cgo_tsan_release.
    // Similarly, when C calls back into Go we call _cgo_tsan_release
    // and then call _cgo_tsan_acquire when we return to C.
    // These calls tell TSAN that there is a serialization point at the C call.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top