Minor comment addition to queue.h.

This commit is contained in:
Richard Barry 2011-03-05 17:47:53 +00:00
parent 553a8389cc
commit 0e133bc0fc

View file

@ -68,7 +68,11 @@ extern "C" {
#include "mpu_wrappers.h"
/**
* Type by which queues are referenced. For example, a call to xQueueCreate
* returns (via a pointer parameter) an xQueueHandle variable that can then
* be used as a parameter to xQueueSend(), xQueueReceive(), etc.
*/
typedef void * xQueueHandle;