diff options
Diffstat (limited to 'os/hal/include/hal_queues.h')
-rw-r--r-- | os/hal/include/hal_queues.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/include/hal_queues.h b/os/hal/include/hal_queues.h index b9516c984..2153aa104 100644 --- a/os/hal/include/hal_queues.h +++ b/os/hal/include/hal_queues.h @@ -49,7 +49,11 @@ */
typedef struct io_queue io_queue_t;
-/** @brief Queue notification callback type.*/
+/**
+ * @brief Queue notification callback type.
+ *
+ * @param[in] qp the queue pointer.
+ */
typedef void (*qnotify_t)(io_queue_t *qp);
/**
|