RTEMS 6.1-rc1
|
This group contains the Event Manager implementation. More...
Modules | |
Event Manager Multiprocessing (MP) Support | |
This group contains the implementation to support the Event Manager in multiprocessing (MP) configurations. | |
Files | |
file | event.h |
This header file provides the Event Manager API. | |
file | eventdata.h |
This header file provides data structures used by the implementation and the Application Configuration to ultimately define Thread_Configured_control. | |
file | eventimpl.h |
This header file provides the implementation interfaces of the Event Manager. | |
file | eventreceive.c |
This source file contains the implementation of rtems_event_receive(). | |
file | eventseize.c |
This source file contains the implementation of _Event_Seize() and the Event Manager multiprocessing (MP) support system initialization. | |
file | eventsend.c |
This source file contains the implementation of rtems_event_send(). | |
file | eventsurrender.c |
This source file contains the implementation of _Event_Surrender(). | |
file | systemeventreceive.c |
This source file contains the implementation of rtems_event_system_receive(). | |
file | systemeventsend.c |
This source file contains the implementation of rtems_event_system_send(). | |
Data Structures | |
struct | Event_Control |
This structure is used to manage a set of events. More... | |
Functions | |
rtems_status_code | _Event_Seize (rtems_event_set event_in, rtems_option option_set, rtems_interval ticks, rtems_event_set *event_out, Thread_Control *executing, Event_Control *event, Thread_Wait_flags wait_class, States_Control block_state, ISR_lock_Context *lock_context) |
Seizes a set of events. More... | |
rtems_status_code | _Event_Surrender (Thread_Control *the_thread, rtems_event_set event_in, Event_Control *event, Thread_Wait_flags wait_class, ISR_lock_Context *lock_context) |
Surrenders a set of events. More... | |
This group contains the Event Manager implementation.
rtems_status_code _Event_Seize | ( | rtems_event_set | event_in, |
rtems_option | option_set, | ||
rtems_interval | ticks, | ||
rtems_event_set * | event_out, | ||
Thread_Control * | executing, | ||
Event_Control * | event, | ||
Thread_Wait_flags | wait_class, | ||
States_Control | block_state, | ||
ISR_lock_Context * | lock_context | ||
) |
Seizes a set of events.
event_in | is the input event set. |
option_set | is the option set. |
ticks | is the optional timeout in clock ticks. |
event_out[out] | is the output event set. |
executing[in,out] | is the executing thread. |
event[in,out] | is the source event set. |
wait_class | is the thread wait class of the source event set. |
block_state | is the thread blocking state of the source event set. |
lock_context[in,out] | is the lock context set up by _Thread_Get(). |
RTEMS_SUCCESSFUL | The requested operation was successful. |
RTEMS_UNSATISFIED | The events of interest were not immediately available. |
RTEMS_TIMEOUT | The events of interest were not available within the specified timeout interval. |
rtems_status_code _Event_Surrender | ( | Thread_Control * | the_thread, |
rtems_event_set | event_in, | ||
Event_Control * | event, | ||
Thread_Wait_flags | wait_class, | ||
ISR_lock_Context * | lock_context | ||
) |
Surrenders a set of events.
the_thread[in,out] | is the thread of the event set. |
event_in | is the set of events to post. |
event[in,out] | is the target event set. |
wait_class | is the thread wait class of the target event set. |
lock_context[in,out] | is the lock context set up by _Thread_Get(). |
RTEMS_SUCCESSFUL | The requested operation was successful. |