Make building of low-priority work queue independent of also building the high-priority work queue

This commit is contained in:
Gregory Nutt
2014-10-11 14:43:24 -06:00
parent 5671ebeab3
commit bb1d91bd83
3 changed files with 10 additions and 36 deletions
+3 -11
View File
@@ -52,18 +52,10 @@
* Pre-processor Definitions
****************************************************************************/
/* Customize kernel thread names */
/* Kkernel thread names */
#ifdef CONFIG_SCHED_HPWORK
# if defined(CONFIG_SCHED_LPWORK)
# define HPWORKNAME "hpwork"
# define LPWORKNAME "lpwork"
# elif defined(CONFIG_SCHED_USRWORK)
# define HPWORKNAME "kwork"
# else
# define HPWORKNAME "work"
# endif
#endif
#define HPWORKNAME "hpwork"
#define LPWORKNAME "lpwork"
/****************************************************************************
* Public Type Definitions