summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Le Du <yann.le.du@kernkonzept.com>2024-07-09 10:02:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2024-07-09 14:01:11 +0200
commit20ad89de9124db4178c8f41a097700f1923b1f58 (patch)
tree49c66300973afbeadfe254ec13b62b672d86e6f3
parentee077ec4d9351c9f9c3e1293dfb3da8e1fe36261 (diff)
stdlib: increase number of static atexit handlers to 32
The existing limit of 20 was found to be insufficient when moving from gcc 8 to gcc 9. At the time a test ran already 16 handlers had been installed leaving only minimal room for application installed handlers. Musl uses 32, as does newlib. Further, the ISO C standard for C99 specifies that: The implementation shall support the registration of at least 32 functions. (7.20.4.2 The atexit function) Co-authored-by: Yann Le Du <yann.le.du@kernkonzept.com> Signed-off-by: Marcus Haehnel <marcus.haehnel@kernkonzept.com>
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 8b1375184..d4e0b75e7 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -606,7 +606,7 @@ libc_hidden_proto(unsetenv)
#ifdef __UCLIBC_DYNAMIC_ATEXIT__
# define __UCLIBC_MAX_ATEXIT INT_MAX
#else
-# define __UCLIBC_MAX_ATEXIT 20
+# define __UCLIBC_MAX_ATEXIT 32
#endif