From 51fd6b47b1346d8491843b17a7745ec049cb0d56 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 19 Dec 2019 10:18:32 +0100 Subject: [PATCH] config: Fix CONFIGURE_MAXIMUM_POSIX_THREADS Bug was introduced by previous commit. Update #3845. --- cpukit/include/rtems/confdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/include/rtems/confdefs.h b/cpukit/include/rtems/confdefs.h index 6a8f56f77d..b98dffb4c8 100644 --- a/cpukit/include/rtems/confdefs.h +++ b/cpukit/include/rtems/confdefs.h @@ -2420,7 +2420,7 @@ struct _reent *__getreent(void) _CONFIGURE_MEMORY_FOR_TASKS( \ _CONFIGURE_TASKS, _CONFIGURE_TASKS) + \ _CONFIGURE_MEMORY_FOR_TASKS( \ - _CONFIGURE_POSIX_THREADS, _CONFIGURE_POSIX_THREADS) + \ + CONFIGURE_MAXIMUM_POSIX_THREADS, CONFIGURE_MAXIMUM_POSIX_THREADS) + \ _CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES( \ CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES) + \ _CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( \