diff options
author | Yorick van Pelt <yorick@yorickvanpelt.nl> | 2023-03-03 11:43:47 +0100 |
---|---|---|
committer | Yorick van Pelt <yorick@yorickvanpelt.nl> | 2023-03-03 11:43:47 +0100 |
commit | 2683734936760dad87a33710d0264266aea96ca4 (patch) | |
tree | ff01499f3b3769f4f57d31e51be4ad78b1387e55 /src/libexpr | |
parent | 176005749cbc413514cc7fca31587de184720b62 (diff) |
Add talkative msg for coro gc debug
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/eval.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 9667136e8..0d2a3c815 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -367,6 +367,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>(); |