Skip to content
Snippets Groups Projects
NuttxUserGuide.html 170 KiB
Newer Older
patacongo's avatar
patacongo committed
<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>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H2>2.4 <A NAME="Message_Queue">Named Message Queue Interfaces</a></H2>
patacongo's avatar
patacongo committed

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

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    mqd_t mq_open( const char *mqName, int oflags, ... );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function establish a connection between
patacongo's avatar
patacongo committed
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().
patacongo's avatar
patacongo committed
<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>
<li><I>O_RDONLY</I>. Open for read access.
<li><I>O_WRONLY</I>. Open for write access.
<li><I>O_RDWR</I>. Open for both read &amp; write access.
<li><I>O_CREAT</I>. Create message queue if it does not already
patacongo's avatar
patacongo committed
exist.
patacongo's avatar
patacongo committed
<li><I>O_EXCL</I>. Name must not exist when opened.
<li><I>O_NONBLOCK</I>. Don't wait for data.
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<li><I>... Optional parameters</I>.
patacongo's avatar
patacongo committed
When the O_CREAT flag is specified, POSIX requires that a third
and fourth parameter be supplied:
patacongo's avatar
patacongo committed
<ul>
<li><I>mode</I>.  The mode parameter is of type mode_t.  In the POSIX
patacongo's avatar
patacongo committed
specification, this mode value provides file permission bits for the
message queue.  This parameter is required but not used in the present
implementation.
patacongo's avatar
patacongo committed
<li><I>attr</I>.  A pointer to an mq_attr that is provided to initialize.
patacongo's avatar
patacongo committed
the message queue.  If attr is NULL, then the messages queue is created
with implementation-defined default message queue attributes.  If attr is
non-NULL, then the message queue mq_maxmsg attribute is set to the
corresponding value when the queue is created.  The mq_maxmsg attribute
determines the maximum number of messages that can be queued before
addition attempts to send messages on the message queue fail or cause the
sender to block; the mq_msgsize attribute determines the maximum size of a
message that can be sent or received.  Other elements of attr are ignored
(i.e, set to default message queue attributes).
patacongo's avatar
patacongo committed
</ul>
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>A message queue descriptor or -1 (ERROR)
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX interface
patacongo's avatar
patacongo committed
of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>The mq_msgsize attributes determines the maximum size of a message that
patacongo's avatar
patacongo committed
may be sent or received.  In the present implementation, this maximum
message size is limited at 22 bytes.
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="mqclose">2.4.2 mq_close</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_close( mqd_t mqdes );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function is used to indicate that the
patacongo's avatar
patacongo committed
calling task is finished with the specified message queued mqdes.
The mq_close() deallocates any system resources allocated by the
system for use by this task for its message queue.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the calling task has attached a notification request to the message
queue via this <I>mqdes</I> (see mq_notify()), this attachment will be
removed and the message queue is available for another task to attach
for notification.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqdes</I>. Message queue descriptor.
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) if the message queue is closed successfully, otherwise,
patacongo's avatar
patacongo committed
-1 (ERROR).
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Assumptions/Limitations:</b> 
<p>
<ul>
<li>The behavior of a task that is blocked on either a mq_send() or
patacongo's avatar
patacongo committed
mq_receive() is undefined when mq_close() is called.
patacongo's avatar
patacongo committed
<li>The result of using this message queue descriptor after successful
patacongo's avatar
patacongo committed
return from mq_close() is undefined.
patacongo's avatar
patacongo committed
</ul>
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX interface
patacongo's avatar
patacongo committed
of the same name.

patacongo's avatar
patacongo committed
<H3><a name="mqunlink">2.4.3 mq_unlink</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_unlink( const char *mqName );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function removes the message queue named
patacongo's avatar
patacongo committed
by &quot;mqName.&quot; If one or more tasks have the message queue
open when mq_unlink() is called, removal of the message queue
is postponed until all references to the message queue have been
closed.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqName</I>. Name of the message queue
</ul>

<p>
<b>Returned Values:</b> None.
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="mqsend">2.4.4 mq_send</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_send( mqd_t mqdes, const void *msg, size_t msgLen, int msgPrio );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function adds the specified message (msg)
patacongo's avatar
patacongo committed
to the message queue (mqdes). The &quot;msgLen&quot; parameter
specifies the length of the message in bytes pointed to by &quot;msg.&quot;
This length must not exceed the maximum message length from the
mq_getattr().
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the message queue is not full, mq_send() will in the message
in the message queue at the position indicated by the &quot;msgPrio&quot;
argument. Messages with higher priority will be inserted before
lower priority messages. The value of &quot;msgPrio&quot; must
not exceed MQ_PRIO_MAX.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the specified message queue is full and O_NONBLOCK is not
set in the message queue, then mq_send() will block until space
becomes available to the queue the message.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the message queue is full and osNON_BLOCK is set, the message
is not queued and ERROR is returned.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqdes</I>. Message queue descriptor
<li><I>msg</I>. Message to send
<li><I>msgLen</I>. The length of the message in bytes
<li><I>msgPrio</I>. The priority of the message
</ul>

<p>
<b>Returned Values:</b> None.
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>Control is not returned if a signal is received.
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="mqreceive">2.4.5 mq_receive</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_receive( mqd_t mqdes, void *msg, size_t msgLen, int *msgPrio );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function receives the oldest of the highest
patacongo's avatar
patacongo committed
priority messages from the message queue specified by &quot;mqdes.&quot;
If the size of the buffer in bytes (msgLen) is less than the &quot;mq_msgsize&quot;
attribute of the message queue, mq_receive will return an error.
Otherwise, the select message is removed from the queue and copied
to &quot;msg.&quot;
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the message queue is empty and O_NONBLOCK was not set, mq_receive()
will block until a message is added to the message queue. If more
than one task is waiting to receive a message, only the task with
the highest priority that has waited the longest will be unblocked.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the queue is empty and O_NONBLOCK is set, ERROR will be
returned.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqdes</I>. Message Queue Descriptor
<li><I>msg</I>. Buffer to receive the message
<li><I>msgLen</I>. Size of the buffer in bytes
<li><I>msgPrio</I>. If not NULL, the location to store message
patacongo's avatar
patacongo committed
priority.
patacongo's avatar
patacongo committed
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>Length of the selected message in bytes, otherwise -1 (ERROR).
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>Control is not returned if a signal is received.
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="mqnotify">2.4.6 mq_notify</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_notify( mqd_t mqdes, const struct sigevent *notification );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> If the &quot;notification&quot; input parameter
patacongo's avatar
patacongo committed
is not NULL, this function connects the task with the message queue such
that the specified signal will be sent to the task whenever the message
changes from empty to non-empty. One notification can be attached
to a message queue.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If &quot;notification&quot; is NULL, the attached notification
is detached (if it was held by the calling task) and the queue
is available to attach another notification.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
When the notification is sent to the registered task, its registration
will be removed.  The message queue will then be available for
registration.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b>
<ul>
<li><I>mqdes</I>. Message queue descriptor
<li><I>notification</I>. Real-time signal structure containing:
<ul>
<li><I>sigev_notify</I>. Should be osSIGEV_SIGNAL (but actually
patacongo's avatar
patacongo committed
ignored)
patacongo's avatar
patacongo committed
<li><I>sigev_signo</I>. The signo to use for the notification
<li><I>sigev_value</I>. Value associated with the signal
</ul>

</ul>

<p>
<b>Returned Values:</b> None.
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX interface
patacongo's avatar
patacongo committed
of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>The notification signal will be sent to the registered task even if
patacongo's avatar
patacongo committed
another task is waiting for the message queue to become non-empty.  This is
inconsistent with the POSIX specification which states, &quot;If a process
has registered for notification of message arrival at a message queue and
some process is blocked in <I>mq_receive</I> waiting to receive a message
when a message arrives at the queue, the arriving message shall satisfy the
appropriate <I>mq_receive()</I> ... The resulting behavior is as if the
message queue remains empty, and no notification shall be sent.&quot;
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="mqsetattr">2.4.7 mq_setattr</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_setattr( mqd_t mqdes, const struct mq_attr *mqStat,
                     struct mq_attr *oldMqStat);
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function sets the attributes associated
patacongo's avatar
patacongo committed
with the specified message queue &quot;mqdes.&quot; Only the &quot;O_NONBLOCK&quot;
bit of the &quot;mq_flags&quot; can be changed.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If &quot;oldMqStat&quot; is non-null, mq_setattr() will store
the previous message queue attributes at that location (just as
would have been returned by mq_getattr()).
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqdes</I>. Message queue descriptor
<li><I>mqStat</I>. New attributes
<li><I>oldMqState</I>. Old attributes
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) if attributes are set successfully, otherwise -1
patacongo's avatar
patacongo committed
(ERROR).
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="mqgetattr">2.4.8 mq_getattr</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;mqueue.h&gt;
    int mq_getattr( mqd_t mqdes, struct mq_attr *mqStat);
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This functions gets status information and
patacongo's avatar
patacongo committed
attributes associated with the specified message queue.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>mqdes</I>. Message queue descriptor
<li><I>mqStat</I>. Buffer in which to return attributes. The returned
patacongo's avatar
patacongo committed
attributes include:
patacongo's avatar
patacongo committed
<ul>
<li><I>mq_maxmsg</I>. Max number of messages in queue.
<li><I>mq_msgsize</I>. Max message size.
<li><I>mq_flags</I>. Queue flags.
<li><I>mq_curmsgs</I>. Number of messages currently in queue.
</ul>

</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) if attributes provided, -1 (ERROR) otherwise.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H2>2.5 <A NAME="Semaphores">Counting Semaphore Interfaces</a></H2>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
  <b>Semaphores</b>.  Semaphores are the basis for
  synchronization and mutual exclusion in NuttX. NuttX supports
  POSIX semaphores.
</p>
<p>
  Semaphores are the preferred mechanism for gaining exclusive access to a
  resource.  sched_lock() and sched_unlock() can also be used for this purpose.
  However, sched_lock() and sched_unlock() have other undesirable side-affects
  in the operation of the system:  sched_lock() also prevents higher-priority
  tasks from running that do not depend upon the semaphore-managed resource
  and, as a result, can adversely affect system response times.
</p>
<p>
patacongo's avatar
patacongo committed
  <b>Priority Inversion</b>.  Proper use of semaphores avoids the issues of
patacongo's avatar
patacongo committed
  sched_lock().  However, consider the following example:
  <OL>
patacongo's avatar
patacongo committed
    <li>Some low-priority task, <I>Task C</I>, acquires a semphore in order to
patacongo's avatar
patacongo committed
      get exclusive access to a protected resource.</li>
patacongo's avatar
patacongo committed
    <li><I>Task C</I> is suspended to allow some high-priority task,</li>
patacongo's avatar
patacongo committed
      <I>Task A</I>, to execute.</li>
patacongo's avatar
patacongo committed
    <li><I>Task A</I> attempts to acquire the semaphore held by <I>Task C</I> and
patacongo's avatar
patacongo committed
      gets blocked until <I>Task C</I> relinquishes the semaphore.</li>
patacongo's avatar
patacongo committed
    <li><I>Task C</I> is allowed to execute again, but gets suspended by some
patacongo's avatar
patacongo committed
      medium-priority <I>Task B</I>.</li>
  </OL>
<p>
  At this point, the high-priority <I>Task A</I> cannot execute until
  <I>Task B</I> (and possibly other medium-priority tasks) completes and until
  <I>Task C</I> relinquishes the semaphore.  In effect, the high-priority task,
  <I>Task A</I> behaves as though it were lower in priority than the
  low-priority task, <I>Task C</I>!  This phenomenon is called <I>priority
  inversion</I>.
</p>
<p>
  Some operating systems avoid priority inversion by <I>automatically</I>
  increasing the priority of the low-priority <I>Task C</I> (the operable
  buzz-word for this behavior is <I>priority inheritance</I>).  NuttX does not
  support this behavior.  As a consequence, it is left to the designer to
  provide implementations that will not suffer from priority inversion.
  The designer may, as examples:
</p>
patacongo's avatar
patacongo committed
<ul>
  <li>Implement all tasks that need the semphore-managed resources at the
patacongo's avatar
patacongo committed
    same priority level,</li>
patacongo's avatar
patacongo committed
  <li>Boost the priority of the low-priority task before the semaphore is
patacongo's avatar
patacongo committed
    acquired, or</li>
patacongo's avatar
patacongo committed
  <li>Use sched_lock() in the low-priority task.</li>
</ul>
patacongo's avatar
patacongo committed
<p>
  POSIX semaphore interfaces:
</p>
<ul>
  <li><a href="#seminit">2.5.1 sem_init</a></li>
  <li><a href="#semdestroy">2.5.2 sem_destroy</a></li>
  <li><a href="#semopen">2.5.3 sem_open</a></li>
  <li><a href="#semclose">2.5.4 sem_close</a></li>
  <li><a href="#semunlink">2.5.5 sem_unlink</a></li>
  <li><a href="#semwait">2.5.6 sem_wait</a></li>
  <li><a href="#semtrywait">2.5.7 sem_trywait</a></li>
  <li><a href="#sempost">2.5.8 sem_post</a></li>
  <li><a href="#semgetvalue">2.5.9 sem_getvalue</a></li>
</ul>

<H3><a name="seminit">2.5.1 sem_init</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_init ( sem_t *sem, int pshared, unsigned int value );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function initializes the UN-NAMED semaphore
patacongo's avatar
patacongo committed
sem. Following a successful call to sem_init(), the semaphore
may be used in subsequent calls to sem_wait(), sem_post(), and
sem_trywait(). The semaphore remains usable until it is destroyed.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Only <I>sem</I> itself may be used for performing synchronization.  The
result of referring to copies of <I>sem</I> in calls to <I>sem_wait()</I>,
<I>sem_trywait()</I>, <I>sem_post()</I>, and <I>sem_destroy()</I>, is
not defined.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore to be initialized
<li><I>pshared</I>. Process sharing (not used)
<li><I>value</I>. Semaphore initialization value 
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK), or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>pshared is not used.
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="semdestroy">2.5.2 sem_destroy</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_destroy ( sem_t *sem );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function is used to destroy the un-named semaphore
patacongo's avatar
patacongo committed
indicated by <I>sem</I>.  Only a semaphore that was created using
<I>sem_init()</I> may be destroyed using <I>sem_destroy()</I>.  The effect
of calling <I>sem_destroy()</I> with a named semaphore is undefined.  The
effect of subsequent use of the semaphore <I>sem</I> is undefined until
<I>sem</I> is re-initialized by another call to <I>sem_init()</I>.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
The effect of destroying a semaphore upon which other tasks are currently
blocked is undefined.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore to be destroyed.
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK), or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="semopen">2.5.3 sem_open</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    sem_t *sem_open ( const char *name, int oflag, ...);
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function establishes a connection between
patacongo's avatar
patacongo committed
named semaphores and a task. Following a call to sem_open() with
the semaphore name, the task may reference the semaphore associated
with name using the address returned by this call. The semaphore
may be used in subsequent calls to sem_wait(), sem_trywait(),
and sem_post(). The semaphore remains usable until the semaphore
is closed by a successful call to sem_close().
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If a task makes multiple calls to sem_open() with the same name,
then the same semaphore address is returned (provided there have
been no calls to sem_unlink()).
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>name</I>. Semaphore name
<li><I>oflag</I>. Semaphore creation options. This may one of
patacongo's avatar
patacongo committed
the following bit settings:
patacongo's avatar
patacongo committed
<ul>
<li><I>oflag</I> = 0: Connect to the semaphore only if it already
patacongo's avatar
patacongo committed
exists.
patacongo's avatar
patacongo committed
<li><I>oflag</I> = O_CREAT: Connect to the semaphore if it exists,
patacongo's avatar
patacongo committed
otherwise create the semaphore.
patacongo's avatar
patacongo committed
<li><I>oflag</I> = O_CREAT with O_EXCL (O_CREAT|O_EXCL): Create
patacongo's avatar
patacongo committed
a new semaphore unless one of this name already exists.
patacongo's avatar
patacongo committed
</ul>
<li>... Optional parameters.
patacongo's avatar
patacongo committed
NOTE:  When the O_CREAT flag is specified, POSIX requires that a third
and fourth parameter be supplied:
patacongo's avatar
patacongo committed
<ul>
<li><I>mode</I>.  The mode parameter is of type mode_t.  
patacongo's avatar
patacongo committed
This parameter is required but not used in the present
implementation.
patacongo's avatar
patacongo committed
<li><I>value</I>.  The value parameter is type unsigned int.  The semaphore
patacongo's avatar
patacongo committed
is created with an initial value of <I>value</I>.  Valid initial values for
semaphores must be less than or equal to <I>SEM_VALUE_MAX</I> (defined in
<CODE>include/limits.h</CODE>).
patacongo's avatar
patacongo committed
</ul>
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>A pointer to sem_t or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>Treatment of links/connections is highly simplified. It is
patacongo's avatar
patacongo committed
just a counting semaphore.
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="semclose">2.5.4 sem_close</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_close ( sem_t *sem );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function is called to indicate that the
patacongo's avatar
patacongo committed
calling task is finished with the specified named semaphore, sem.
The sem_close() deallocates any system resources allocated by
the system for this named semaphore.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the semaphore has not been removed with a call to sem_unlink(),
then sem_close() has no effect on the named semaphore. However,
when the named semaphore has been fully unlinked, the semaphore
will vanish when the last task closes it.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Care must be taken to avoid risking the deletion of a semaphore
that another calling task has already locked.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore descriptor
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK), or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b>
<ul>
<li>Care must be taken to avoid deletion of a semaphore that another task
patacongo's avatar
patacongo committed
has already locked.
patacongo's avatar
patacongo committed
<li>sem_close() must not be called with an un-named semaphore.
</ul>
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="semunlink">2.5.5 sem_unlink</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_unlink ( const char *name );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function will remove the semaphore named by the
patacongo's avatar
patacongo committed
input name parameter.  If one or more tasks have the semaphore named by
name oepn when sem_unlink() is called, destruction of the semaphore will
be postponed until all references have been destroyed by calls to
sem_close().
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>name</I>. Semaphore name
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK), or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<ul>
<li>Care must be taken to avoid deletion of a semaphore that another task
patacongo's avatar
patacongo committed
has already locked.
patacongo's avatar
patacongo committed
<li>sem_unlink() must not be called with an un-named semaphore.
</ul>
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.
Differences from the full POSIX implementation include:
patacongo's avatar
patacongo committed
<ul>
<li>Treatment of links/connections is highly simplified. It is
patacongo's avatar
patacongo committed
just a counting semaphore.
patacongo's avatar
patacongo committed
<li>Calls to sem_open() to re-create or re-connect to the semaphore may
patacongo's avatar
patacongo committed
refer to the same semaphore; POSIX specifies that a new semaphore with the
same name should be created after sem_unlink() is called.
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="semwait">2.5.6 sem_wait</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_wait ( sem_t *sem );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function attempts to lock the semaphore
patacongo's avatar
patacongo committed
referenced by sem. If the semaphore as already locked by another
task, the calling task will not return until it either successfully acquires
the lock or the call is interrupted by a signal.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore descriptor.
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK), or -1 (ERROR) is unsuccessful
</ul>
<p>
patacongo's avatar
patacongo committed
If <I>sem_wait</I> returns -1 (ERROR) then the cause of the failure
will be indicated by the thread-specific <I>errno</I> value (a pointer
to this value can be obtained using <I>get_errno_ptr()</I>).  The following
lists the possible values for <I>errno</I>:
patacongo's avatar
patacongo committed
<p>
<ul>
<li><I>EINVAL</I>:  Indicates that the <I>sem</I> input parameter is
patacongo's avatar
patacongo committed
not valid.
patacongo's avatar
patacongo committed
<li><I>EINTR</I>:  Indicates that the wait was interrupt by a signal
patacongo's avatar
patacongo committed
received by this task.  In this case, the semaphore has not be acquired.
patacongo's avatar
patacongo committed
</ul>
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="semtrywait">2.5.7 sem_trywait</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_trywait ( sem_t *sem );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function locks the specified semaphore
patacongo's avatar
patacongo committed
only if the semaphore is currently not locked.  In any event, the call
returns without blocking.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. The semaphore descriptor
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) or -1 (ERROR) if unsuccessful
</ul>
patacongo's avatar
patacongo committed
If <I>sem_wait</I> returns -1 (ERROR) then the cause of the failure
will be indicated by the thread-specific <I>errno</I> value (a pointer
to this value can be obtained using <I>get_errno_ptr()</I>).  The following
lists the possible values for <I>errno</I>:
patacongo's avatar
patacongo committed
<p>
<ul>
<li><I>EINVAL</I>:  Indicates that the <I>sem</I> input parameter is
patacongo's avatar
patacongo committed
not valid.
patacongo's avatar
patacongo committed
<li><I>EAGAIN</I>:  Indicates that the semaphore was not acquired.
</ul>
<p>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="sempost">2.5.8 sem_post</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_post ( sem_t *sem );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> When a task has finished with a semaphore,
patacongo's avatar
patacongo committed
it will call sem_post().  This function unlocks the semaphore referenced
by <I>sem</I> by performing the semaphore unlock operation.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the semaphore value resulting from this operation is positive, then
no tasks were blocked waiting for the semaphore to become unlocked;
The semaphore value is simply incremented.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If the value of the semaphore resulting from this operation is zero, then
on of the tasks blocked waiting for the semaphore will be allowed to
return successfully from its call to <I>sem_wait()</I>.
patacongo's avatar
patacongo committed
<p>
<b>NOTE</b>:  <I>sem_post()</I> may be called from an interrupt handler.
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore descriptor
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> This function cannot be called
patacongo's avatar
patacongo committed
from an interrupt handler. It assumes the currently executing
task is the one that is performing the unlock.
patacongo's avatar
patacongo committed
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<H3><a name="semgetvalue">2.5.9 sem_getvalue</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;semaphore.h&gt;
    int sem_getvalue ( sem_t *sem, int *sval );
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function updates the location referenced
patacongo's avatar
patacongo committed
by sval argument to have the value of the semaphore referenced
by sem without effecting the state of the semaphore. The updated
value represents the actual semaphore value that occurred at some
unspecified time during the call, but may not reflect the actual
value of the semaphore when it is returned to the calling task.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
If sem is locked, the value return by sem_getvalue() will either
be zero or a negative number whose absolute value represents the
number of tasks waiting for the semaphore.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>sem</I>. Semaphore descriptor
<li><I>sval</I>. Buffer by which the value is returned
</ul>

<p>
<b>Returned Values:</b> 
<ul>
<li>0 (OK) or -1 (ERROR) if unsuccessful.
</ul>

<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> Comparable to the POSIX
patacongo's avatar
patacongo committed
interface of the same name.

patacongo's avatar
patacongo committed
<hr>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H2>2.6 <A NAME="Watchdogs">Watchdog Timer Interfaces</a></H2>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
  NuttX provides a general watchdog timer facility.
  This facility allows the NuttX user to specify a watchdog timer function
  that will run after a specified delay.
  The watchdog timer function will run in the context of the timer interrupt handler.
  Because of this, a limited number of NuttX interfaces are available to he watchdog timer function.
  However, the watchdog timer function may use mq_send(), sigqueue(), or kill() to communicate with NuttX tasks.
</p>
<ul>
  <li><a href="#wdcreate">2.6.1 wd_create</a></li>
  <li><a href="#wddelete">2.6.2 wd_delete</a></li>
  <li><a href="#wdstart">2.6.3 wd_start</a></li>
  <li><a href="#wdcancel">2.6.4 wd_cancel</a></li>
  <li><a href="#wdgettime">2.6.5 wd_gettime</a></li>
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="wdcreate">2.6.1 wd_create</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;wdog.h&gt;
    WDOG_ID wd_create (void);
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> The wd_create function will create a watchdog
patacongo's avatar
patacongo committed
by allocating the appropriate resources for the watchdog.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> None.
<p>
<b>Returned Values:</b> 
<ul>
<li>Pointer to watchdog that may be used as a handle in subsequent
NuttX calls (i.e., the watchdog ID), or NULL if insufficient resources
patacongo's avatar
patacongo committed
are available to create the watchdogs.
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Assumptions/Limitations:</b> 
<p>
<b>  POSIX  Compatibility:</b> This is a NON-POSIX interface.
patacongo's avatar
patacongo committed
VxWorks provides the following comparable interface:
<PRE>
    WDOG_ID wdCreate (void);
</PRE>

patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Differences from the VxWorks interface include:
patacongo's avatar
patacongo committed
<ul>
<li>The number of available watchdogs is fixed (configured at
patacongo's avatar
patacongo committed
initialization time).
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="wddelete">2.6.2 wd_delete</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;wdog.h&gt;
    STATUS wd_delete (WDOG_ID wdog);
patacongo's avatar
patacongo committed
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> The wd_delete function will deallocate a
patacongo's avatar
patacongo committed
watchdog. The watchdog will be removed from the timer queue if
has been started.
patacongo's avatar
patacongo committed
<p>
<b>Input Parameters:</b> 
<ul>
<li><I>wdog</I>. The watchdog ID to delete. This is actually a
patacongo's avatar
patacongo committed
pointer to a watchdog structure.
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Returned Values:</b> 
<ul>
<li>OK or ERROR
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Assumptions/Limitations:</b> It is the responsibility of the
patacongo's avatar
patacongo committed
caller to assure that the watchdog is inactive before deleting
it.
patacongo's avatar
patacongo committed
<p>
<b>  POSIX  Compatibility:</b> This is a NON-POSIX interface.
patacongo's avatar
patacongo committed
VxWorks provides the following comparable interface:
<PRE>
    STATUS wdDelete (WDOG_ID wdog);
patacongo's avatar
patacongo committed
</PRE>

patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Differences from the VxWorks interface include:
patacongo's avatar
patacongo committed
<ul>
<li>Does not make any checks to see if the watchdog is being used
patacongo's avatar
patacongo committed
before de-allocating it (i.e., never returns ERROR).
patacongo's avatar
patacongo committed
</ul>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<H3><a name="wdstart">2.6.3 wd_start</a></H3>
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
<p>
<b>Function Prototype:</b> 
patacongo's avatar
patacongo committed
<PRE>
    #include &lt;wdog.h&gt;
    STATUS wd_start( WDOG_ID wdog, int delay, wdentry_t wdentry,
                     intt argc, ....);
patacongo's avatar
patacongo committed
</PRE>

patacongo's avatar
patacongo committed
<p>
<b>Description:</b> This function adds a watchdog to the timer
patacongo's avatar
patacongo committed
queue. The specified watchdog function will be called from the
interrupt level after the specified number of ticks has elapsed.
Watchdog timers may be started from the interrupt level.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Watchdog times execute in the context of the timer interrupt handler, but
with the PIC/PID address environment that was in place when wd_start()
was called.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
Watchdog timers execute only once.
patacongo's avatar
patacongo committed
<p>
patacongo's avatar
patacongo committed
To replace either the timeout delay or the function to be executed,