comments does not match implementation

maxim79 wrote on Wednesday, April 16, 2008:

Hi Richard, hi all

Thanks a lot for the new release 5.0.0. I have already upgraded my software. Everything works fine and stable. As I use xQueue*ISR functions in my project, could not miss the wrong (not up-to-date) comments in "queue.h". According to release 5.0.0 the parameter "PreviouslyWoken" is a pointer.

Regards
Maxim

P.S. comments:

Line 769:-----------------------------------------------------
* queue. h
* <pre>
portBASE_TYPE xQueueSendToFrontFromISR(
                                         xQueueHandle pxQueue,
                                         const void *pvItemToQueue,
                                         portBASE_TYPE xTaskPreviouslyWoken
                                      );
</pre>

Line 840:-----------------------------------------------------
* queue. h
* <pre>
portBASE_TYPE xQueueSendToBackFromISR(
                                         xQueueHandle pxQueue,
                                         const void *pvItemToQueue,
                                         portBASE_TYPE xTaskPreviouslyWoken
                                      );
</pre>

Line 910:-----------------------------------------------------
* queue. h
* <pre>
portBASE_TYPE xQueueSendFromISR(
                                     xQueueHandle pxQueue,
                                     const void *pvItemToQueue,
                                     portBASE_TYPE xTaskPreviouslyWoken
                                );
</pre>

rtel wrote on Wednesday, April 16, 2008:

Ouch!  Thanks for poiting that out.  I have updated the SVN repository with the corrections.  I managed to get it right on the WEB documentation.

Regards.