testing/ostest: Remove the code which reference CONFIG_SEM_NNESTPRIO

since CONFIG_SEM_NNESTPRIO is removed by:
https://github.com/apache/incubator-nuttx/pull/6318

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-10-20 21:35:12 +08:00 committed by Petro Karashchenko
parent 31ad585611
commit 6f01a3b3d4

View File

@ -57,19 +57,7 @@
# define NLOWPRI_THREADS 1
#endif
#ifndef CONFIG_SEM_NNESTPRIO
# define CONFIG_SEM_NNESTPRIO 0
#endif
/* Where resources configured for lots of waiters? If so then run 3 high
* priority threads. Otherwise, just one.
*/
#if CONFIG_SEM_NNESTPRIO > 3
# define NHIGHPRI_THREADS 3
#else
# define NHIGHPRI_THREADS 1
#endif
#define NHIGHPRI_THREADS 1
#define NUMBER_OF_COMPETING_THREADS 3
#define COMPETING_THREAD_START_PRIORITY 200