summaryrefslogtreecommitdiff
path: root/nuttx/sched/init
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-11 15:59:40 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-11 15:59:40 -0600
commit2caaf98951ff5389f7b48c253fecbcc45e9d32bc (patch)
treeecd081617cae23910bb60a59595d28e842fb9354 /nuttx/sched/init
parent063645013a5e7632e2941afd5b1b5ed30d76ce43 (diff)
downloadnuttx-2caaf98951ff5389f7b48c253fecbcc45e9d32bc.tar.gz
nuttx-2caaf98951ff5389f7b48c253fecbcc45e9d32bc.tar.bz2
nuttx-2caaf98951ff5389f7b48c253fecbcc45e9d32bc.zip
Rename CONFIG_SCHED_USRWORK to CONFIG_LIB_USRWORK
Diffstat (limited to 'nuttx/sched/init')
-rw-r--r--nuttx/sched/init/os_bringup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/sched/init/os_bringup.c b/nuttx/sched/init/os_bringup.c
index 09f31d2e0..f3918ec88 100644
--- a/nuttx/sched/init/os_bringup.c
+++ b/nuttx/sched/init/os_bringup.c
@@ -120,7 +120,7 @@
/* In the protected build (only) we also need to start the user work queue */
#if !defined(CONFIG_BUILD_PROTECTED)
-# undef CONFIG_SCHED_USRWORK
+# undef CONFIG_LIB_USRWORK
#endif
/****************************************************************************
@@ -197,7 +197,7 @@ static inline void os_pgworker(void)
#ifdef CONFIG_SCHED_WORKQUEUE
static inline void os_workqueues(void)
{
-#ifdef CONFIG_SCHED_USRWORK
+#ifdef CONFIG_LIB_USRWORK
pid_t pid;
#endif
@@ -219,7 +219,7 @@ static inline void os_workqueues(void)
#endif /* CONFIG_SCHED_LPWORK */
-#ifdef CONFIG_SCHED_USRWORK
+#ifdef CONFIG_LIB_USRWORK
/* Start the user-space work queue */
DEBUGASSERT(USERSPACE->work_usrstart != NULL);