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 01bf45788e
commit dd8d40dabd
15 changed files with 14 additions and 34 deletions

View File

@@ -152,7 +152,7 @@ int stackmonitor_start(int argc, char **argv)
g_stackmonitor.started = true;
g_stackmonitor.stop = false;
ret = TASK_CREATE("Stack Monitor", CONFIG_SYSTEM_STACKMONITOR_PRIORITY,
ret = task_create("Stack Monitor", CONFIG_SYSTEM_STACKMONITOR_PRIORITY,
CONFIG_SYSTEM_STACKMONITOR_STACKSIZE,
(main_t)stackmonitor_daemon, (FAR char * const *)NULL);
if (ret < 0)