diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html
index 60c63f181fe..a5997f9728c 100644
--- a/Documentation/NuttxUserGuide.html
+++ b/Documentation/NuttxUserGuide.html
@@ -1260,6 +1260,9 @@ interface of the same name.
If the message queue is full and NON_BLOCK is set, the message
is not queued and ERROR is returned.
+NOTE: mq_send() may be called from an interrupt handler. +
Input Parameters:
@@ -2236,7 +2239,7 @@ 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 sem_wait().-NOTE: sem_post() may be called from an interrupt handler. +NOTE: sem_post() may be called from an interrupt handler.
Input Parameters:
-Assumptions/Limitations: This function cannot be called -from an interrupt handler. It assumes the currently executing -task is the one that is performing the unlock. +Assumptions/Limitations:. +When called from an interrupt handler, it will appear as though the +interrupt task is the one that is performing the unlock.
POSIX Compatibility: Comparable to the POSIX interface of the same name.