summaryrefslogtreecommitdiff
path: root/nuttx/sched/sched_addreadytorun.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-31 23:52:53 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-31 23:52:53 +0000
commit768b31742994a7270a11f6b0393329b3404b2af0 (patch)
tree07225e24cd679bcd042f722dc39514fa90ba541c /nuttx/sched/sched_addreadytorun.c
parente56f12fd3dbddb72e0a3996a1247d27bad227cd5 (diff)
downloadpx4-nuttx-768b31742994a7270a11f6b0393329b3404b2af0.tar.gz
px4-nuttx-768b31742994a7270a11f6b0393329b3404b2af0.tar.bz2
px4-nuttx-768b31742994a7270a11f6b0393329b3404b2af0.zip
Debug NSH on z80sim
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@474 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/sched_addreadytorun.c')
-rw-r--r--nuttx/sched/sched_addreadytorun.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/nuttx/sched/sched_addreadytorun.c b/nuttx/sched/sched_addreadytorun.c
index cb53aa65e..be33daa2e 100644
--- a/nuttx/sched/sched_addreadytorun.c
+++ b/nuttx/sched/sched_addreadytorun.c
@@ -1,7 +1,7 @@
-/************************************************************
- * sched_addreadytorun.c
+/****************************************************************************
+ * sched/sched_addreadytorun.c
*
- * Copyright (C) 2007 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -14,7 +14,7 @@
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
- * 3. Neither the name Gregory Nutt nor the names of its contributors may be
+ * 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -31,42 +31,42 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <sys/types.h>
#include <queue.h>
#include <assert.h>
#include "os_internal.h"
-/************************************************************
+/****************************************************************************
* Definitions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Type Declarations
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Global Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Variables
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Private Function Prototypes
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sched_addreadytorun
*
* Description:
@@ -93,7 +93,7 @@
* - The caller handles the condition that occurs if the
* the head of the g_readytorun list is changed.
*
- ************************************************************/
+ ****************************************************************************/
boolean sched_addreadytorun(FAR _TCB *btcb)
{