File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
11
11
#include <zephyr/autoconf.h> /* CONFIG_* */
12
12
#include <zephyr/sys/util_macro.h> /* COND_CODE_1() */
13
- #include <zephyr/kernel/thread_stack.h> /* K_KERNEL_STACK_LEN() */
14
13
15
14
/*
16
15
* POSIX Application Environment Profiles (AEP - IEEE Std 1003.13-2003)
@@ -287,7 +286,6 @@ __PICOLIBC_MINOR__ == 8 && __PICOLIBC_PATCHLEVEL__ >= 9)))
287
286
#define _POSIX_SIGQUEUE_MAX (32)
288
287
#define _POSIX_SSIZE_MAX (32767)
289
288
#define _POSIX_SS_REPL_MAX (4)
290
- #define _POSIX_STACK_MIN (K_KERNEL_STACK_LEN(0))
291
289
#define _POSIX_STREAM_MAX (8)
292
290
#define _POSIX_SYMLINK_MAX (255)
293
291
#define _POSIX_SYMLOOP_MAX (8)
@@ -345,7 +343,6 @@ __PICOLIBC_MINOR__ == 8 && __PICOLIBC_PATCHLEVEL__ >= 9)))
345
343
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
346
344
#define PTHREAD_KEYS_MAX _POSIX_THREAD_KEYS_MAX
347
345
#define PTHREAD_THREADS_MAX _POSIX_THREAD_THREADS_MAX
348
- #define PTHREAD_STACK_MIN _POSIX_STACK_MIN
349
346
#define RTSIG_MAX _POSIX_RTSIG_MAX
350
347
#define SEM_NSEMS_MAX _POSIX_SEM_NSEMS_MAX
351
348
#define SEM_VALUE_MAX _POSIX_SEM_VALUE_MAX
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ extern "C" {
54
54
/* Passed to pthread_once */
55
55
#define PTHREAD_ONCE_INIT {0}
56
56
57
+ /* The minimum allowable stack size */
58
+ #define PTHREAD_STACK_MIN K_KERNEL_STACK_LEN(0)
59
+
57
60
/**
58
61
* @brief Declare a condition variable as initialized
59
62
*
You can’t perform that action at this time.
0 commit comments