Merge dcfbf3c210 into merged_master (Bitcoin PR bitcoin/bitcoin#28512)

This commit is contained in:
Byron Hambly 2025-08-04 12:54:46 +02:00
commit af3933e134
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697

View file

@ -43,7 +43,7 @@ threads take up 8MiB for the thread stack on a 64-bit system, and 4MiB in a
## Linux specific
By default, glibc 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 bitcoind:
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 bitcoind:
```bash
#!/usr/bin/env bash