From ed7a5f31c2a47606fe438eb9cf22363c2a411052 Mon Sep 17 00:00:00 2001 From: Peter Mitsis Date: Wed, 29 May 2024 11:44:10 -0400 Subject: [PATCH] kernel: Update CONFIG_PIPES Kconfig description Updates the CONFIG_PIPES Kconfig description to add a note that enabling it will cause a slight increase to the thread structure. This mirrors a similar comment in CONFIG_EVENTS. Signed-off-by: Peter Mitsis --- kernel/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/Kconfig b/kernel/Kconfig index c65ec351fcb..8b8def8b52e 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -704,6 +704,9 @@ config PIPES allows a thread to send a byte stream to another thread. Pipes can be used to synchronously transfer chunks of data in whole or in part. + Note that setting this option slightly increases the size of the + thread structure. + config KERNEL_MEM_POOL bool "Use Kernel Memory Pool" default y