diff options
Diffstat (limited to 'src/include/events.h')
-rw-r--r-- | src/include/events.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/events.h b/src/include/events.h index 4ae3d3540..34c35d487 100644 --- a/src/include/events.h +++ b/src/include/events.h @@ -36,20 +36,20 @@ typedef struct EventListener EventListener; * @brief Event Listener structure.
*/
struct EventListener {
- /** Next Event Listener registered on the Event Source.*/
- EventListener *el_next;
- /** Thread interested in the Event Source.*/
- Thread *el_listener;
- /** Event flags mask associated by the thread to the Event Source.*/
- eventmask_t el_mask;
+ EventListener *el_next; /**< Next Event Listener registered on
+ the Event Source.*/
+ Thread *el_listener; /**< Thread interested in the Event
+ Source.*/
+ eventmask_t el_mask; /**< Event flags mask associated by the
+ thread to the Event Source.*/
};
/**
* @brief Event Source structure.
*/
typedef struct EventSource {
- /** First Event Listener registered on the Event Source.*/
- EventListener *es_next;
+ EventListener *es_next; /**< First Event Listener registered on
+ the Event Source.*/
} EventSource;
/** Returns the event mask from the event identifier.*/
|