From 5fe773865c0e6e5e00c4c324410ff795e74cd050 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 13 Aug 2021 11:01:45 -0400 Subject: [PATCH] Clarify usage of CYC_PTHREAD_SET_STACK_SIZE --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44396f72..354a2ec1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ Features - Initiate major garbage collections faster after allocating a huge object (larger than 500K). This allows the system to reclaim the memory faster and keep overall memory usage low for certain workloads. - Cyclone will no longer memoize pure functions by default. -- Added build option `CYC_PTHREAD_SET_STACK_SIZE` to allow Cyclone to specify a thread stack size rather than using the OS default. +- Added build option `CYC_PTHREAD_SET_STACK_SIZE` to allow Cyclone to specify a thread stack size rather than using the OS default. EG: + + make CYC_PTHREAD_SET_STACK_SIZE=1 libcyclone.a Bug Fixes