Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Au <andrewau@microsoft.com>2021-06-22 19:00:43 +0300
committerGitHub <noreply@github.com>2021-06-22 19:00:43 +0300
commit85aebc422ee12c13a15c94aedd5a2e7627e47db7 (patch)
treee938f54f4d87d8b1c5214ec0d0dca81c041debea /src/coreclr/gc
parent183c4d100f68fb6c177a1fe71809d581aa25e47b (diff)
Fix deadlock (#54426)
Diffstat (limited to 'src/coreclr/gc')
-rw-r--r--src/coreclr/gc/gc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coreclr/gc/gc.cpp b/src/coreclr/gc/gc.cpp
index 909e5580c72..f4fdf3177ef 100644
--- a/src/coreclr/gc/gc.cpp
+++ b/src/coreclr/gc/gc.cpp
@@ -20587,6 +20587,7 @@ void gc_heap::garbage_collect (int n)
update_collection_counts_for_no_gc();
#ifdef MULTIPLE_HEAPS
+ gc_start_event.Reset();
gc_t_join.restart();
#endif //MULTIPLE_HEAPS
}