aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.cc
diff options
context:
space:
mode:
authorYorick van Pelt <yorick@yorickvanpelt.nl>2023-03-03 11:43:47 +0100
committerThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2023-04-07 14:54:50 +0200
commit62ddd8633c06c32baad71b72ce4c82c54c2df512 (patch)
tree1bd33e19538e4627eb67552e6a4e922d7543786d /src/libexpr/eval.cc
parent58d24a4cb630a6162d6f7d2a85e41949fdf2ad36 (diff)
Add talkative msg for coro gc debug
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r--src/libexpr/eval.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index 7dcd10d50..18cfd9531 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -386,6 +386,7 @@ void initGC()
#if NIX_BOEHM_PATCH_VERSION != 1
+ printTalkative("Unpatched BoehmGC, disabling GC inside coroutines");
/* Used to disable GC when entering coroutines on macOS */
create_coro_gc_hook = []() -> std::shared_ptr<void> {
return std::make_shared<BoehmDisableGC>();