summaryrefslogtreecommitdiff
path: root/apps/examples/ostest/waitpid.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/examples/ostest/waitpid.c
parent9ee5cfaffa313949563fb37f7cd39a2b7620a4dd (diff)
downloadnuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.tar.gz
nuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.tar.bz2
nuttx-7bfdcaa22bd60cd34f11b0592c53fc5da1a37617.zip
Remove final traces of the 8015 from the NuttX source tree
Diffstat (limited to 'apps/examples/ostest/waitpid.c')
-rw-r--r--apps/examples/ostest/waitpid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/ostest/waitpid.c b/apps/examples/ostest/waitpid.c
index 0649748a2..6b6de7908 100644
--- a/apps/examples/ostest/waitpid.c
+++ b/apps/examples/ostest/waitpid.c
@@ -84,7 +84,7 @@ static void waitpid_start_children(void)
for (i = 0; i < NCHILDREN; i++)
{
- ret = TASK_CREATE("waitpid", PRIORITY, STACKSIZE, waitpid_main, NULL);
+ ret = task_create("waitpid", PRIORITY, STACKSIZE, waitpid_main, NULL);
if (ret < 0)
{
printf("waitpid_start_child: ERROR Failed to start waitpid_main\n");