Remove final traces of the 8015 from the NuttX source tree

This commit is contained in:
Gregory Nutt 2014-09-01 13:21:15 -06:00
parent 171fff2ef0
commit d78a62aaf0
2 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ bool CNxServer::connect(void)
// Start the server task // Start the server task
gvdbg("CNxServer::connect: Starting server task\n"); gvdbg("CNxServer::connect: Starting server task\n");
pid_t serverId = TASK_CREATE("NX Server", CONFIG_NXWIDGETS_SERVERPRIO, pid_t serverId = task_create("NX Server", CONFIG_NXWIDGETS_SERVERPRIO,
CONFIG_NXWIDGETS_SERVERSTACK, server, CONFIG_NXWIDGETS_SERVERSTACK, server,
(FAR char * const *)0); (FAR char * const *)0);
if (serverId < 0) if (serverId < 0)

View File

@ -250,7 +250,7 @@ bool CNxConsole::run(void)
g_nxconvars.nxcon = 0; g_nxconvars.nxcon = 0;
sched_lock(); sched_lock();
m_pid = TASK_CREATE("NxConsole", CONFIG_NXWM_NXCONSOLE_PRIO, m_pid = task_create("NxConsole", CONFIG_NXWM_NXCONSOLE_PRIO,
CONFIG_NXWM_NXCONSOLE_STACKSIZE, nxconsole, CONFIG_NXWM_NXCONSOLE_STACKSIZE, nxconsole,
(FAR char * const *)0); (FAR char * const *)0);