You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
9e0f19f Merge bitcoin#28512: doc: Be vague instead of wrong about MALLOC_ARENA_MAX (PastaBot)
d04979f Merge bitcoin#29821: fuzz: Some `test/fuzz/test_runner.py` improvements (PastaBot)
c9ffe01 Merge bitcoin#27423: ci: fix git dubious permissions error (PastaBot)
d4b420f Merge bitcoin#29805: test: Fix debug recommendation in argsman_tests (PastaBot)
78a5017 Merge bitcoin#29776: ThreadSanitizer: Fixbitcoin#29767 (PastaBot)
6c24671 Merge bitcoin#29687: cli: improve bitcoin-cli error when not connected (PastaBot)
4f1d6e7 Merge bitcoin#29764: doc: Suggest installing dev packages for debian/ubuntu qt5 build (PastaBot)
6a5e1c2 Merge bitcoin#29094: ci: Better tidy errors (PastaBot)
08eb23b Merge bitcoin#27919: ci: Run fuzz target even if input folder is empty (PastaBot)
Pull request description:
## Issue being fixed or feature implemented
batch of backports
## What was done?
## How Has This Been Tested?
## Breaking Changes
## Checklist:
_Go over all the following points, and put an `x` in all the boxes that apply._
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added or updated relevant unit/integration/functional/e2e tests
- [ ] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
ACKs for top commit:
knst:
utACK 9e0f19f
Tree-SHA512: 1c16cd9402cec0490df96044e98a33e87b221a162885ad3bf87ef641af9cbd5fa9a7179bc13fccf6ff14cf22ba967fc8f992e5c9cc486fc04287a50bcd16579c
Copy file name to clipboardExpand all lines: doc/reduce-memory.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ threads take up 8MiB for the thread stack on a 64-bit system, and 4MiB in a
43
43
44
44
## Linux specific
45
45
46
-
By default, since glibc`2.10`, the C library will create up to two heap arenas per core. This is known to cause excessive memory usage in some scenarios. To avoid this make a script that sets `MALLOC_ARENA_MAX` before starting dashd:
46
+
By default, glibc's implementation of `malloc` may use more than one arena. This is known to cause excessive memory usage in some scenarios. To avoid this, make a script that sets `MALLOC_ARENA_MAX` before starting dashd:
throwCConnectionFailed(strprintf("Could not connect to the server %s:%d%s\n\nMake sure the dashd server is running and that you are connecting to the correct RPC port.", host, port, responseErrorMessage));
831
+
throwCConnectionFailed(strprintf("Could not connect to the server %s:%d%s\n\n"
832
+
"Make sure the dashd server is running and that you are connecting to the correct RPC port.\n"
0 commit comments