linguini1 commented on code in PR #18072:
URL: https://github.com/apache/nuttx/pull/18072#discussion_r2766221325
##########
sched/Kconfig:
##########
@@ -1855,6 +1855,12 @@ config SCHED_HPWORKSTACKSIZE
---help---
The stack size allocated for the worker thread. Default: 2K.
+config SCHED_HPWORKSTACKSECTION
Review Comment:
This is causing a failing build for RPi4B.
Usage of this definition is guarded by
```c
#ifdef SCHED_HPWORKSTACKSECTION
...
```
In kwork_thread.c l561, but `ifdef` does not evaluate to false with the
default value `""` (empty string). There needs to be a boolean condition
guarding this
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]