From dd328baad87373af0a575463b480edcd5d21d7d5 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 5 Dec 2011 19:59:10 +0000 Subject: [PATCH] Fix banding on the R61580 LCD git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4136 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttxUserGuide.html | 109 ++++++++++++++++++------------ 1 file changed, 67 insertions(+), 42 deletions(-) diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index a5997f9728..09407bfb08 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -13,7 +13,7 @@

NuttX Operating System

User's Manual

by

Gregory Nutt

-

Last Updated: July 19, 2011

+

Last Updated: December 5, 2011

@@ -1549,58 +1549,83 @@ interface of the same name.

2.4.7 mq_notify

-Function Prototype: + Function Prototype:

     #include <mqueue.h>
     int mq_notify(mqd_t mqdes, const struct sigevent *notification);
 
- +

-Description: If the "notification" input parameter -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. + Description: If the notification input parameter + 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. +

-If "notification" is NULL, the attached notification -is detached (if it was held by the calling task) and the queue -is available to attach another notification. + If notification; is NULL, the attached notification + is detached (if it was held by the calling task) and the queue + is available to attach another notification. +

-When the notification is sent to the registered task, its registration -will be removed. The message queue will then be available for -registration. + When the notification is sent to the registered task, its registration + will be removed. The message queue will then be available for + registration.

-Input Parameters: -

- + Input Parameters: + +

-Returned Values: None. + Returned Values: + On success mq_notify() returns 0; on error, -1 is returned, with + errno set to indicate the error: +

+

-Assumptions/Limitations: + Assumptions/Limitations: +

- POSIX Compatibility: Comparable to the POSIX interface -of the same name. -Differences from the full POSIX implementation include: -

+ POSIX Compatibility: Comparable to the POSIX interface of the same name. + Differences from the full POSIX implementation include: + +

2.4.8 mq_setattr