Skip to content
Snippets Groups Projects
NuttxUserGuide.html 158 KiB
Newer Older
patacongo's avatar
patacongo committed
<HTML>

<HEAD>
patacongo's avatar
patacongo committed
<TITLE>NuttX Users Manual</TITLE>
patacongo's avatar
patacongo committed
<META NAME="AUTHOR" CONTENT="Gregory Nutt">
</HEAD>

patacongo's avatar
patacongo committed
<body background="backgd.gif">
<hr>
<hr>
<center><h1><i>Under Construction</i></h1></center>
<hr>
<hr>
patacongo's avatar
patacongo committed
<CENTER><BIG><B>
patacongo's avatar
patacongo committed
<P>
User's Manual
</B></BIG>
<P>
<SMALL>by</SMALL>
<P>
Gregory Nutt
<P>
<SMALL>Last Update: March 21, 2007</SMALL>
patacongo's avatar
patacongo committed
</CENTER>

<H1>1.0 <A NAME="Introduction">Introduction</A></H1>

<P>
patacongo's avatar
patacongo committed
This user's manual is divided into three sections plus a index:
patacongo's avatar
patacongo committed
<UL>
<LI><B>Section 1.0, <A HREF="#Introduction">Introduction</A></B>:
This section provides an overview of the NuttX user's manual.
patacongo's avatar
patacongo committed
<LI><B>Section 2.0, <A HREF="#OS_Interfaces">OS Interfaces</A></B>:
This section details the  interfaces provided by NuttX from the
patacongo's avatar
patacongo committed
perspective of the firmware developer.  This section is divided
into several paragraphs that describe different groups of OS interfaces:
<UL>
<LI>Paragraph 2.1 <A HREF="#Task_Control">Task Control Interfaces</A>
<LI>Paragraph 2.2 <A HREF="#Task_Schedule">Task Scheduling Interfaces</A>
patacongo's avatar
patacongo committed
<LI>Paragraph 2.3 <A HREF="#Task_Switch">Task Switching Interfaces</A>
<LI>Paragraph 2.4 <A HREF="#Message_Queue">Named Message Queue Interfaces</A>
<LI>Paragraph 2.5 <A HREF="#Semaphores">Counting Semaphore Interfaces</A>
<LI>Paragraph 2.6 <A HREF="#Watchdogs">Watchdog Timer Interfaces</A>
<LI>Paragraph 2.7 <A HREF="#ClocksNTimers">Clocks and Timers</A>
<LI>Paragraph 2.8 <A HREF="#Signals">Signal Interfaces</A>
<LI>Paragraph 2.9 <A HREF="#Pthread">Pthread Interfaces</A>
<LI>Paragraph 2.10 <A HREF="#FileSystem">Filesystem Interfaces</A>
patacongo's avatar
patacongo committed
</UL>
<LI><B>Section 3.0, <A HREF="#Data_Structures">OS Data Structures</A></B>:
This section documents the data structures that are used at the NuttX
patacongo's avatar
patacongo committed
interface.
patacongo's avatar
patacongo committed
<li><a href="#index">Index</a></li>
</ul>
patacongo's avatar
patacongo committed
<HR>

<H1>2.0 <A NAME="OS_Interfaces">OS Interfaces</A></H1>

<P>
This section describes each C-callable interface to the NuttX
patacongo's avatar
patacongo committed
Operating System. The description of each interface is presented
in the following format:
<P>
<B>Function Prototype:</B> The C prototype of the interface function
is provided.
<P>
<B>Description:</B> The operation performed by the interface function
is discussed.
<P>
<B>Input Parameters:</B> All input parameters are listed along
with brief descriptions of each input parameter.
<P>
<B>Returned Values:</B> All possible values returned by the interface
function are listed. Values returned as side-effects (through
pointer input parameters or through global variables) will be
addressed in the description of the interface function.
<P>
<B>Assumptions/Limitations:</B> Any unusual assumptions made by
the interface function or any non-obvious limitations to the use
of the interface function will be indicated here.
<P>
<B>POSIX Compatibility:</B> Any significant differences between the
NuttX interface and its corresponding POSIX interface will be noted
patacongo's avatar
patacongo committed
here.
<P>
NOTE: In order to achieve an independent name space for the NuttX
patacongo's avatar
patacongo committed
interface functions, differences in function names and types are
to be expected and will not be identified as differences in these
paragraphs.
<HR>

<H2>2.1 <A NAME="Task_Control">Task Control Interfaces</A></H2>

<p>
patacongo's avatar
patacongo committed
  <b>Tasks</b>.
  NuttX is a flat address OS.  As such it does not support &quot;processes&quot;
  in the way that, say, Linux does.
  NuttX only supports simple threads running within the same address space.
  However, the programming model makes a distinction between &quot;tasks&quot;
  and pthreads:
</p>
patacongo's avatar
patacongo committed
<ul>
patacongo's avatar
patacongo committed
  <li><i>tasks</i> are threads which have a degree of independence
  <li><a href="#Pthread"><i>pthreads</i></a> share some resources.
patacongo's avatar
patacongo committed
</ul>
<p>
patacongo's avatar
patacongo committed
  <b>File Descriptors and Streams</b>.
  This applies, in particular, in the area of opened file descriptors and streams.
  When a task is started using the interfaces in this section, it will be created
  with at most three open files.
</p>
</p>
  If CONFIG_DEV_CONSOLE is defined, the first three file descriptors (corresponding
  to stdin, stdout, stderr) will be duplicated for the the new task.
  Since these file descriptors are duplicated, the child task can free close
  them or manipulate them in any way without effecting the parent task.
  File-related operations (open, close, etc.) within a task will have no effect
  on other tasks.
  Since the three file descriptors are duplicated, it is also possible to perform
  some level of redirection.
</p>
<p>
  pthreads, on the other hand, will always share file descriptors with the parent
  thread.  In this case, file operations will have effect only all pthreads the
  were started from the same parent thread.
</p>
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
  The following task control interfaces are provided by Nuttx:
</p>
<ul>
  <li><a href="#taskcreate">2.1.1 task_create</a></li>
  <li><a href="#taskinit">2.1.2 task_init</a></li>
  <li><a href="#taskactivate">2.1.3 task_activate</a></li>
  <li><a href="#taskdelete">2.1.4 task_delete</a></li>
  <li><a href="#exit">2.1.5 exit</a></li>
  <li><a href="#taskrestart">2.1.6 task_restart</a></li>
  <li><a href="#getpid">2.1.7 getpid</a></li>
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="taskcreate">2.1.1 task_create</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
   #include &lt;sched.h&gt;
patacongo's avatar
patacongo committed
   int task_create(char *name, int priority, int stack_size, main_t entry, const char *argv[]);
patacongo's avatar
patacongo committed
</PRE>

<P>
<B>Description:</B> 
   This function creates and activates a new task with a
   specified priority and returns its system-assigned ID.
</p>

<P>The entry address entry is the address of the &quot;main&quot;
   function of the task.
   This function will be called once the C environment has been set up.
   The specified function will be called with four arguments.
   Should the specified routine return, a call to exit() will automatically be made.
</P>
<p>
   Note that an arbitrary number of arguments may be passed to the
   spawned functions.  The maximum umber of arguments is an OS
   configuration parameter (<code>CONFIG_MAX_TASK_ARGS</code>).
</p>
<p>
   The arguments are copied (via <code>strdup</code>) so that the
   life of the passed strings is not dependent on the life of the
   caller to <code>task_create()</code>.
</p>
<p>
   The newly created task does not inherit scheduler characteristics
patacongo's avatar
patacongo committed
   from the parent task:  The new task is started at the
   default system priority and with the SCHED_FIFO scheduling
   policy.  These characteristcs may be modified after the new
   task has been started.
</p>
<p>
   The newly created task does inherit the first three file
   descriptors (corresponding to stdin, stdout, and stderr) and
   redirection of standard I/O is supported.
</p>
patacongo's avatar
patacongo committed
<P>
<B>Input Parameters:</B> 
  <UL>
    <LI><I>name</I>. Name of the new task</LI>
    <LI><I>priority</I>. Priority of the new task</LI>
    <LI><I>stack_size</I>. size (in bytes) of the stack needed</LI>
    <LI><I>entry</I>. Entry point of a new task</LI>
    <LI><I>argv</I>. A pointer to an array of input parameters.  Up to
       <code>CONFIG_MAX_TASK_ARG</code> parameters may be provided.
       If fewer than <code>CONFIG_MAX_TASK_ARG</code> parameters are
       passed, the list should be terminated with a NULL argv[] value.
       If no parameters are required, argv may be NULL.
patacongo's avatar
patacongo committed
  </UL>
<P>
  <B>Returned Values:</B> 
</P>
<UL>
<LI>
  Returns the non-zero task ID of the new task or
  ERROR if memory is insufficient or the task cannot be
  created (errno is not set).
</LI>
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>POSIX Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the following similar interface:
<PRE>
patacongo's avatar
patacongo committed
   int taskSpawn(char *name, int priority, int options, int stackSize, FUNCPTR entryPt,
                 int arg1, int arg2, int arg3, int arg4, int arg5,
                 int arg6, int arg7, int arg8, int arg9, int arg10);
patacongo's avatar
patacongo committed
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX task_create() differs from VxWorks' taskSpawn() in the
  following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
<LI>Interface name
<LI>Various differences in types of arguments
patacongo's avatar
patacongo committed
<LI>There is no options arguement.
<LI>A variable number of parameters can be passed to a task (VxWorks supports ten).
patacongo's avatar
patacongo committed
</UL>

patacongo's avatar
patacongo committed
<H3><a name="taskinit">2.1.2 task_init</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
   #include &lt;sched.h&gt;
patacongo's avatar
patacongo committed
   STATUS task_init(_TCB *tcb, char *name, int priority, uint32 *stack, uint32 stack_size,
                    maint_t entry, const char *argv[]);
patacongo's avatar
patacongo committed
</PRE>

<P>
<B>Description:</B>
<P>
  This function initializes a Task Control Block (TCB)
  in preparation for starting a new thread.  It performs a subset
  of the functionality of <code>task_create()</code> (see above).
patacongo's avatar
patacongo committed
</P>
<P>
  Unlike task_create(), task_init() does not activate the task.
  This must be done by calling task_activate().
</P>
<P>
<B>Input Parameters:</B> 
  <UL>
    <LI><I>tcb</I>. Address of the new task's TCB
    <LI><I>name</I>. Name of the new task (not used)
    <LI><I>priority</I>. Priority of the new task
    <LI><I>stack</I>. Start of the pre-allocated stack
    <LI><I>stack_size</I>. size (in bytes) of the pre-allocated stack
    <LI><I>entry</I>. Entry point of a new task
    <LI><I>argv</I>. A pointer to an array of input parameters.  Up to
       <code>CONFIG_MAX_TASK_ARG</code> parameters may be provided.
       If fewer than <code>CONFIG_MAX_TASK_ARG</code> parameters are
       passed, the list should be terminated with a NULL argv[] value.
       If no parameters are required, argv may be NULL.
patacongo's avatar
patacongo committed
  </UL>
</p>
<P>
<B>Returned Values:</B> 
</p>
<UL>
  <LI><P>OK, or ERROR if the task cannot be initialized.</P>
  <P>This function can only failure is it is unable to assign
    a new, unique task ID to the TCB (errno is not set).</P>
</UL>
<P>
<B>Assumptions/Limitations:</B>
<UL>
<LI>task_init() is provided to support internal OS functionality.  It is
<B>not recommended</B> for normal usage.  task_create() is the preferred
mechanism to initialize and start a new task.
</UL>
<P>
<B>POSIX Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the following similar interface:
<PRE>
patacongo's avatar
patacongo committed
   STATUS taskInit(WIND_TCB *pTcb, char *name, int priority, int options, uint32 *pStackBase, int stackSize,
                   FUNCPTR entryPt, int arg1, int arg2, int arg3, int arg4, int arg5,
                   int arg6, int arg7, int arg8, int arg9, int arg10);
patacongo's avatar
patacongo committed
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX task_init() differs from VxWorks' taskInit() in the
  following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
patacongo's avatar
patacongo committed
<LI>Various differences in types or arguments
<LI>There is no options argument.
<LI>A variable number of parameters can be passed to a task (VxWorks supports ten).
patacongo's avatar
patacongo committed
</UL>

patacongo's avatar
patacongo committed
<H3><a name="taskactivate">2.1.3 task_activate</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    STATUS task_activate( _TCB *tcb );
</PRE>

<P>
<B>Description:</B> This function activates tasks created by task_init().
Without activation, a task is ineligible for execution by the
scheduler.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>tcb</I>. The TCB for the task for the task (same as the
task_init argument).
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>OK, or ERROR if the task cannot be activated (errno is not set).
</UL>

<P>
<B>Assumptions/Limitations:</B>
<UL>
<LI>task_activate() is provided to support internal OS functionality.  It is
<B>not recommended</B> for normal usage.  task_create() is the preferred
mechanism to initialize and start a new task.
</UL>
<P>
<B>POSIX Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the following similar interface:
<PRE>
    STATUS taskActivate( int tid );
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX task_activate() differs from VxWorks' taskActivate() in the
  following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
<LI>Function name
<LI>With VxWork's taskActivate, the pid argument is supposed to be
the pointer to the WIND_TCB cast to an integer.
</UL>

patacongo's avatar
patacongo committed
<H3><a name="taskdelete">2.1.4 task_delete</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    STATUS task_delete( pid_t pid );
</PRE>

<P>
<B>Description:</B> This function causes a specified task to cease
to exist -- its stack and TCB will be deallocated. This function
is the companion to task_create().
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>pid</I>. The task ID of the task to delete. An ID of
zero signifies the calling task.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>OK, or ERROR if the task cannot be deleted.
This function can fail if the provided pid does not correspond to a task (errno is not set)
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
task_delete() must be used with caution:  If the task holds resources
(for example, allocated memory or semaphores needed by other tasks), then
task_delete() can strand those resources.
<P>
<B>POSIX Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the following similar interface:
<PRE>
    STATUS taskDelete( int tid );
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX task_delete() differs from VxWorks' taskDelete() in
  the following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
<LI>No support is provided for calling the tasks deletion routines
(because taskDeleteHookAdd() is not supported).
<LI>Deletion of self is not supported.  Use _exit();
</UL>

patacongo's avatar
patacongo committed
<H3><a name="exit">2.1.5 exit</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    void exit( int code );

    #include &lt;nuttx/unistd.h&gt;
    void _exit( int code );
</PRE>

<P>
<B>Description:</B> This function causes the calling task to cease
to exist -- its stack and TCB will be deallocated.  exit differs from
_exit in that it flushs streams, closes file descriptors and will
execute any function registered with atexit().
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>code</I>. (ignored)
</UL>

<P>
<B>Returned Values:</B>  None.

<P>
<B>Assumptions/Limitations:</B> 

<P>
<B>POSIX Compatibility:</B> This is equivalent to the ANSI interface:
<PRE>
    void exit( int code );
</PRE>
And the unix interface:
<PRE>
    void _exit( int code );
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX exit() differs from ANSI exit() in the following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
<LI>The <I>code</I> parameter is ignored.
</UL>

patacongo's avatar
patacongo committed
<H3><a name="taskrestart">2.1.6 task_restart</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    STATUS task_restart( pid_t pid );
</PRE>

<P>
<B>Description:</B> This function &quot;restarts&quot; a task.
The task is first terminated and then reinitialized with same
ID, priority, original entry point, stack size, and parameters
it had when it was first started.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>pid</I>. The task ID of the task to delete. An ID of
zero signifies the calling task.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>
  OK, or ERROR if the task ID is invalid or the task could
  not be restarted.
  This function can fail if:
  (1) A pid of zero or the pid of the calling task is provided (functionality not implemented)
  (2) The pid is not associated with any task known to the system.
</LI>
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>POSIX Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the following similar interface:
<PRE>
    STATUS taskRestart (int tid);
</PRE>

<P>
patacongo's avatar
patacongo committed
  The NuttX task_restart() differs from VxWorks' taskRestart() in the following ways:
</p>
patacongo's avatar
patacongo committed
<UL>
<LI>Restart of the currently running task is not supported.
<LI>The VxWorks description says that the ID, priority, etc. take
the value that they had when the task was <I>terminated</I>.
</UL>

patacongo's avatar
patacongo committed
<H3><a name="getpid">2.1.7 getpid</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;unistd.h&gt;
    pid_t getpid( void );
</PRE>

<P>
<B>Description:</B> This function returns the task ID of the
calling task. The task ID will be invalid if called at the interrupt
level.
<P>
<B>Input Parameters:</B> None.
<P>
<B>Returned Values:</B> 
<UL>
<LI>The task ID of the calling task.
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>POSIX Compatibility:</B>
Compatible with the POSIX interface of the same name.

<H2>2.2 <A NAME="Task_Schedule">Task Scheduling Interfaces</A></H2>

patacongo's avatar
patacongo committed
<p>
  By default, NuttX performs strict priority scheduling: Tasks of higher
  priority have exclusive access to the CPU until they become blocked.
  At that time, the CPU is available to tasks of lower priority.
  Tasks of equal priority are scheduled FIFO.
</p>
<p>
  Optionally, a Nuttx task or thread can be configured with round-robin
  scheduler.  This is similar to priority scheduling <i>except</i> that
  tasks with equal priority and share CPU time via <i>time-slicing</i>.
  The time-slice interval is a constant determined by the configuration
  setting <code>CONFIG_RR_INTERVAL</code>.
</p>
<p>
  The OS interfaces described in the following paragraphs provide
  a POSIX- compliant interface to the NuttX scheduler:
</p>
<ul>
  <li><a href="#schedsetparam">2.2.1 sched_setparam</a></li>
  <li><a href="#schedgetparam">2.2.2 sched_getparam</a></li>
  <li><a href="#schedsetscheduler">2.2.3 sched_setscheduler</a></li>
  <li><a href="#setgetscheduler">2.2.4 sched_getscheduler</a></li>
  <li><a href="#sched_yield">2.2.5 sched_yield</a></li>
  <li><a href="#schedgetprioritymax">2.2.6 sched_get_priority_max</a></li>
  <li><a href="#schedgetprioritymin">2.2.7 sched_get_priority_min</a></li>
  <li><a href="#schedgetrrinterval">2.2.8 sched_get_rr_interval</a></li>
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="schedsetparam">2.2.1 sched_setparam</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_setparam( pid_t pid, const struct sched_param *param );
</PRE>

<P>
<B>Description:</B> This function sets the priority of the task
specified by pid input parameter.
<P>
NOTE: Setting a task's priority to the same value has the similar
effect to sched_yield() -- The task will be moved to after all
other tasks with the same priority.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>pid</I>. The task ID of the task. If pid is zero, the
priority of the calling task is set.
patacongo's avatar
patacongo committed
<li><code>param<code>.</li> A structure whose member sched_priority is the
patacongo's avatar
patacongo committed
integer priority. The range of valid priority numbers is from
SCHED_PRIORITY_MIN through SCHED_PRIORITY_MAX.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>
  0 (OK) if successful, otherwise -1 (ERROR).
  This function can fail for the following reasons:
  (1) parm is NULL or parm->sched_priority is out of range.
  (2) pid does not correspond to any task.
</LI>
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.
Differences from the full POSIX implementation include:
<UL>
<LI>The range of priority values for the POSIX call is 0 to 255
</UL>

patacongo's avatar
patacongo committed
<H3><a name="schedgetparam">2.2.2 sched_getparam</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_getparam (pid_t pid, struct sched_param *param);
</PRE>

<P>
<B>Description:</B> This function gets the scheduling priority
of the task specified by pid.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>pid</I>. The task ID of the task. If pid is zero, the
priority of the calling task is returned.
patacongo's avatar
patacongo committed
<li><code>param<code>.</li> A structure whose member sched_priority is the
patacongo's avatar
patacongo committed
integer priority. The task's priority is copied to the sched_priority
element of this structure.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>0 (OK) if successful, otherwise -1 (ERROR).
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="schedsetscheduler">2.2.3 sched_setscheduler</a></H3>
patacongo's avatar
patacongo committed
<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_setscheduler (pid_t pid, int policy, const struct sched_param *param);
</PRE>
<P>
  <B>Description:</B>
  <i>sched_setscheduler()</i>  sets both the scheduling policy
  and the priority for the task identified by pid.
  If pid equals zero, the scheduler of the calling
  thread will be set.
  The parameter 'param' holds the priority of the thread under the new policy.
</p>
<P>
<B>Input Parameters:</B> 
<UL>
  <LI><I>pid</I>. The task ID of the task. If pid is zero, the
    priority of the calling task is set.
  <LI><I>policy</I>. Scheduling policy requested (either SCHED_FIFO
    or SCHED_RR).
patacongo's avatar
patacongo committed
  <li><code>param<code>.</li> A structure whose member sched_priority is the
patacongo's avatar
patacongo committed
    integer priority. The range of valid priority numbers is from
    SCHED_PRIORITY_MIN through SCHED_PRIORITY_MAX.
</UL>
<P>
  <B>Returned Values:</B> 
  On success, <i>sched_setscheduler()</i> returns OK (zero).  On
  error, ERROR (-1) is returned, and errno is set appropriately:
</p>
<ul>
  <li>EINVAL The scheduling policy is not one of the
    recognized policies.</li>
  <li>ESRCH  The task whose ID is pid could not be found.</li>
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="setgetscheduler">2.2.4 sched_getscheduler</a></H3>
patacongo's avatar
patacongo committed
<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_getscheduler (pid_t pid);
</PRE>
<P>
  <B>Description:</B>
  <i>sched_getscheduler()</i> returns the scheduling policy
patacongo's avatar
patacongo committed
  currently applied to the task identified by pid. If
patacongo's avatar
patacongo committed
  pid equals zero, the policy of the calling process will
  be retrieved.
 *
 * Inputs:
 *
 * Return Value:

 This function returns the current scheduling
policy.
<P>
<B>Input Parameters:</B> 
<UL>
  <LI><I>pid</I>.
    The task ID of the task to query.
    If pid is zero, the calling task is queried.
  </LI>
</UL>
<P>
<B>Returned Values:</B> 
<UL>
  <LI>
    On success, <i>sched_getscheduler()</i> returns the policy for
    the task (either SCHED_FIFO or SCHED_RR).
    On error,  ERROR (-1) is returned, and errno is set appropriately:
    <ul>
      <li>ESRCH  The task whose ID is pid could not be found.</li>
    </ul>
  </li>
</UL>
<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.
Differences from the full POSIX implementation include:
<UL>
<LI>Does not report errors via <I>errno</I>.
</UL>

patacongo's avatar
patacongo committed
<H3><a name="sched_yield">2.2.5 sched_yield</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_yield( void );
</PRE>

<P>
<B>Description:</B> This function forces the calling task to give
up the CPU (only to other tasks at the same priority).
<P>
<B>Input Parameters:</B> None.
<P>
<B>Returned Values:</B> 
<UL>
<LI>0 (OK) or -1 (ERROR)
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="schedgetprioritymax">2.2.6 sched_get_priority_max</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_get_priority_max (int policy)
</PRE>

<P>
<B>Description:</B> This function returns the value of the highest
possible task priority for a specified scheduling policy.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>policy</I>. Scheduling policy requested.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>The maximum priority value or -1 (ERROR).
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="schedgetprioritymin">2.2.7 sched_get_priority_min</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_get_priority_min (int policy);
</PRE>

<P>
<B>Description:</B> This function returns the value of the lowest
possible task priority for a specified scheduling policy.
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>policy</I>. Scheduling policy requested.
</UL>

<P>
<B>Returned Values:</B> 
<UL>
<LI>The minimum priority value or -1 (ERROR)
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> Comparable to the POSIX
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="schedgetrrinterval">2.2.8 sched_get_rr_interval</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    int sched_get_rr_interval (pid_t pid, struct timespec *interval);
</PRE>

<P>
  <B>Description:</B> 
  <i>sched_rr_get_interval()</i>  writes  the timeslice interval
  for task identified by <i>pid</i> into  the timespec structure
  pointed to by <i>interval</i>.  If pid is zero, the timeslice
  for the calling process is written into 'interval.  The
  identified process should be running under the SCHED_RR
  scheduling policy.'
</p>
<P>
  <B>Input Parameters:</B> 
</p>
<UL>
<LI><I>pid</I>. The task ID of the task. If pid is zero, the
priority of the calling task is returned.
<LI><I>interval</I>. A structure used to return the time slice.
</UL>

<P>
  <B>Returned Values:</B> 
  On success, sched_rr_get_interval() returns OK (0).  On
  error, ERROR (-1) is returned, and errno is set to:
</p>
<UL>
  <LI>EFAULT Cannot copy to interval</LI>
  <LI>EINVAL Invalid pid.</LI>
  <LI>ENOSYS The system call is not yet implemented.</LI>
  <LI>ESRCH  The process whose ID is pid could not be found.</LI>
</UL>

<P>
  <B>Assumptions/Limitations:</B> 
<P>
  <B>POSIX  Compatibility:</B> Comparable to the POSIX
  interface of the same name.
</P>

<H2>2.3 <A NAME="Task_Switch">Task Switching Interfaces</A></H2>

patacongo's avatar
patacongo committed
<ul>
  <li><a href="#schedlock">2.3.1 sched_lock</a></li>
  <li><a href="#schedunlock">2.3.2 sched_unlock</a></li>
  <li><a href="#schedlockcount">2.3.3 sched_lockcount</a></li>
</ul>

<H3><a name="schedlock">2.3.1 sched_lock</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    STATUS sched_lock( void );
</PRE>

<P>
<B>Description:</B> This function disables context switching by
Disabling addition of new tasks to the ready-to-run task list.
The task that calls this function will be the only task that is
allowed to run until it either calls sched_unlock (the appropriate
number of times) or until it blocks itself.
<P>
<B>Input Parameters:</B> None.
<P>
<B>Returned Values:</B> 
<UL>
<LI>OK or ERROR.
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the comparable interface:
<PRE>
    STATUS taskLock( void );
</PRE>

patacongo's avatar
patacongo committed
<H3><a name="schedunlock">2.3.2 sched_unlock</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    STATUS sched_unlock( void );
</PRE>

<P>
<B>Description:</B> This function decrements the preemption lock
count. Typically this is paired with sched_lock() and concludes
a critical section of code. Preemption will not be unlocked until
sched_unlock() has been called as many times as sched_lock().
When the lockCount is decremented to zero, any tasks that were
eligible to preempt the current task will execute.
<P>
<B>Input Parameters:</B> None.
<P>
<B>Returned Values:</B> 
<UL>
<LI>OK or ERROR.
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> This is a NON-POSIX interface.
VxWorks provides the comparable interface:
<PRE>
    STATUS taskUnlock( void );
</PRE>

patacongo's avatar
patacongo committed
<H3><a name="schedlockcount">2.3.3 sched_lockcount</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;sched.h&gt;
    sint32 sched_lockcount( void )
</PRE>

<P>
<B>Description:</B> This function returns the current value of
the lockCount. If zero, preemption is enabled; if non-zero, this
value indicates the number of times that sched_lock() has been called
on this thread of execution.
<P>
<B>Input Parameters:</B> None.
<P>
<B>Returned Values:</B> 
<UL>
<LI>The current value of the lockCount.
</UL>

<P>
<B>Assumptions/Limitations:</B> 
<P>
<B>  POSIX  Compatibility:</B> None.
<HR>

<H2>2.4 <A NAME="Message_Queue">Named Message Queue Interfaces</A></H2>

patacongo's avatar
patacongo committed
<p>
  NuttX supports POSIX named message queues for intertask communication.
  Any task may send or receive messages on named message queues.
  Interrupt handlers may send messages via named message queues.
</p>
<ul>
  <li><a href="#mqopen">2.4.1 mq_open</a></li>
  <li><a href="#mqclose">2.4.2 mq_close</a></li>
  <li><a href="#mqunlink">2.4.3 mq_unlink</a></li>
  <li><a href="#mqsend">2.4.4 mq_send</a></li>
  <li><a href="#mqreceive">2.4.5 mq_receive</a></li>
  <li><a href="#mqnotify">2.4.6 mq_notify</a></li>
  <li><a href="#mqsetattr">2.4.7 mq_setattr</a></li>
  <li><a href="#mqgetattr">2.4.8 mq_getattr</a></li>
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="mqopen">2.4.1 mq_open</a></H3>
patacongo's avatar
patacongo committed

<P>
<B>Function Prototype:</B> 
<PRE>
    #include &lt;mqueue.h&gt;
    mqd_t mq_open( const char *mqName, int oflags, ... );
</PRE>

<P>
<B>Description:</B> This function establish a connection between
a named message queue and the calling task. After a successful
call of mq_open(), the task can reference the message queue using
the address returned by the call. The message queue remains usable
until it is closed by a successful call to mq_close().
<P>
<B>Input Parameters:</B> 
<UL>
<LI><I>mqName</I>. Name of the queue to open
<LI><I>oflags</I>. Open flags. These may be any combination of:
<UL>