summaryrefslogtreecommitdiff
path: root/apps/system/stackmonitor/stackmonitor.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-01 13:21:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-01 13:21:15 -0600
commit7bfdcaa22bd60cd34f11b0592c53fc5da1a37617 (patch)
tree77b4f3886eb3f4049545827c2008d161c318a9fa /apps/system/stackmonitor/stackmonitor.c
parent9ee5cfaffa313949563fb37f7cd39a2b7620a4dd (diff)
downloadpx4-nuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.tar.gz
px4-nuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.tar.bz2
px4-nuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.zip
Remove final traces of the 8015 from the NuttX source tree
Diffstat (limited to 'apps/system/stackmonitor/stackmonitor.c')
-rw-r--r--apps/system/stackmonitor/stackmonitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/system/stackmonitor/stackmonitor.c b/apps/system/stackmonitor/stackmonitor.c
index 2c912fcbf..8587fda63 100644
--- a/apps/system/stackmonitor/stackmonitor.c
+++ b/apps/system/stackmonitor/stackmonitor.c
@@ -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)