diff options
author | Zachary Johnson <zajohnson@microsoft.com> | 2023-12-01 16:05:42 -0500 |
---|---|---|
committer | Zachary Johnson <zajohnson@microsoft.com> | 2023-12-01 16:05:42 -0500 |
commit | 025e4b27257ebc94cb11a45e99fad3ec5b10e401 (patch) | |
tree | dc998f9a8e6a0cea919232077843c8c34fa53702 | |
parent | 1449b5262b8d6f04389546611a7e2f3c9e5cc02e (diff) | |
download | llvm-users/zacklj89/sprasanwindows-synchronizing-asan-init-on-windows.zip llvm-users/zacklj89/sprasanwindows-synchronizing-asan-init-on-windows.tar.gz llvm-users/zacklj89/sprasanwindows-synchronizing-asan-init-on-windows.tar.bz2 |
[asan][Windows] Synchronizing ASAN init on Windowsusers/zacklj89/sprasanwindows-synchronizing-asan-init-on-windows
Created using spr 1.3.4
-rw-r--r-- | compiler-rt/lib/asan/asan_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_internal.h b/compiler-rt/lib/asan/asan_internal.h index 569f8ae..b19ed92 100644 --- a/compiler-rt/lib/asan/asan_internal.h +++ b/compiler-rt/lib/asan/asan_internal.h @@ -130,7 +130,7 @@ void InstallAtExitCheckLeaks(); if (&__asan_on_error) \ __asan_on_error() -// Unless synchronization is used during initialization, +// Unless synchronization is used during initialization, // race conditions can appear causing incorrect states or internal check // failures, depending on the loading thread and when ASAN is loaded on Windows. // From a multithreaded managed environment, if an ASAN instrumented dll |