summaryrefslogtreecommitdiff
path: root/nuttx/sched/task_start.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-09-05 19:13:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-09-05 19:13:48 +0000
commit7c64ca00e9dcd6b2d3c0647145aa8cc92e447acd (patch)
tree91f5c6e926a8353194bfd320a00afd711a54a807 /nuttx/sched/task_start.c
parent08f9be9b748dfa310b3150e0a931e3aa89c09eeb (diff)
downloadpx4-nuttx-7c64ca00e9dcd6b2d3c0647145aa8cc92e447acd.tar.gz
px4-nuttx-7c64ca00e9dcd6b2d3c0647145aa8cc92e447acd.tar.bz2
px4-nuttx-7c64ca00e9dcd6b2d3c0647145aa8cc92e447acd.zip
paging debug fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2922 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/task_start.c')
-rw-r--r--nuttx/sched/task_start.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/sched/task_start.c b/nuttx/sched/task_start.c
index add6409e7..5d1e74180 100644
--- a/nuttx/sched/task_start.c
+++ b/nuttx/sched/task_start.c
@@ -1,7 +1,7 @@
/****************************************************************************
* sched/task_start.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007-2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -108,7 +108,8 @@ void task_start(void)
}
/* Call the 'main' entry point passing argc and argv. If/when
- * the task returns, */
+ * the task returns.
+ */
exit(tcb->entry.main(argc, tcb->argv));
}