Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Kuoping Hsu 2026-05-15 16:34:33 +08:00 committed by GitHub
parent 657932c563
commit eb5f4ad197
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -513,7 +513,11 @@
#endif /* configUSE_CORE_AFFINITY */
#ifndef configUSE_SCHEDULER_CORE_MASK
#define configUSE_SCHEDULER_CORE_MASK 1
#if ( configNUMBER_OF_CORES > 1 )
#define configUSE_SCHEDULER_CORE_MASK 1
#else
#define configUSE_SCHEDULER_CORE_MASK 0
#endif
#endif /* configUSE_SCHEDULER_CORE_MASK */
#if ( ( configNUMBER_OF_CORES > 1 ) && ( configUSE_CORE_AFFINITY == 1 ) )