summaryrefslogtreecommitdiff
path: root/nuttx/include/sched.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-15 00:45:14 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-15 00:45:14 +0000
commit1ac9219148610878491a20d15c87476451941eee (patch)
tree4692ee907021a755c1a5f3db5fd13e0d9712a2f7 /nuttx/include/sched.h
parent5d5fb0b5646aed4cb074eb317fc09170645c7a3f (diff)
downloadpx4-nuttx-1ac9219148610878491a20d15c87476451941eee.tar.gz
px4-nuttx-1ac9219148610878491a20d15c87476451941eee.tar.bz2
px4-nuttx-1ac9219148610878491a20d15c87476451941eee.zip
Fix several compiler errors that occur when CONFIG_SCHED_ONEXIT is enabled; on_exit is now used in NxWM::NxConsole to close the window with the NSH session exits
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4738 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/sched.h')
-rw-r--r--nuttx/include/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/include/sched.h b/nuttx/include/sched.h
index aa1103bde..94f6a1216 100644
--- a/nuttx/include/sched.h
+++ b/nuttx/include/sched.h
@@ -147,8 +147,8 @@ EXTERN int sched_lockcount(void);
#ifdef CONFIG_SCHED_INSTRUMENTATION
-EXTERN void sched_note_start(FAR _TCB *tcb );
-EXTERN void sched_note_stop(FAR _TCB *tcb );
+EXTERN void sched_note_start(FAR _TCB *tcb);
+EXTERN void sched_note_stop(FAR _TCB *tcb);
EXTERN void sched_note_switch(FAR _TCB *pFromTcb, FAR _TCB *pToTcb);
#else