Skip to content

Commit

Permalink
sched/nxevent: add support of kernel event group
Browse files Browse the repository at this point in the history
Events groups are synchronization primitives that allow tasks to wait
for multiple conditions to be met before proceeding. They are particularly
useful in scenarios where a task needs to wait for several events to occur
simultaneously.

Signed-off-by: chao an <[email protected]>
  • Loading branch information
anchao committed Jul 30, 2024
1 parent cd4fdf2 commit 4ad975c
Show file tree
Hide file tree
Showing 13 changed files with 958 additions and 0 deletions.
112 changes: 112 additions & 0 deletions Documentation/reference/os/events.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
==============
Events
==============

Events groups are synchronization primitives that allow tasks to wait
for multiple conditions to be met before proceeding. They are particularly
useful in scenarios where a task needs to wait for several events to occur
simultaneously.
This concept can be particularly powerful in real-time operating systems (RTOS).

Overview
=========================

An event group consists of a set of binary flags, each representing a
specific event. Tasks can set, clear, and wait on these flags. When a
task waits on an event group, it can specify which flags it is interested
in and whether it wants to wait for all specified flags to be set or just
any one of them.

Configuration Options
=====================

``CONFIG_SCHED_EVENTS``
This option enables event objects. Threads may wait on event
objects for specific events, but both threads and ISRs may deliver
events to event objects.

Common Events Interfaces
================================

Events Types
--------------------

- ``event_t``. Defines one event group entry.
- ``event_mask_t``. Defines one events mask value.

Notifier Chain Interfaces
-------------------------

.. c:function:: int nxevent_init(FAR event_t *event, event_mask_t events)
Initializes an event object, Set of default events to post
to event.
:param event: Address of the event object
:param events: Set of events to event
.. c:function:: int nxevent_destroy(FAR event_t *event)
This function is used to destroy the event.
:param event: Address of the event object
.. c:function:: int nxevent_reset(FAR event_t *event, event_mask_t events)
Reset events mask to a specific value.
:param event: Address of the event object
:param events: Set of events to event
.. c:function:: int nxevent_post(FAR event_t *event, event_mask_t events)
Post one or more events to an event object.
This routine posts one or more events to an event object. All tasks
waiting on the event object event whose waiting conditions become
met by this posting immediately unpend.
Posting differs from setting in that posted events are merged together
with the current set of events tracked by the event object.
:param event: Address of the event object
:param events: Set of events to post to event, 0 will ignored the waiting events and wake up the waiting thread
.. c:function:: event_mask_t nxevent_wait(FAR event_t *event, event_mask_t events)
Wait for all of the specified events.
This routine waits on event object event until any of the specified
events have been delivered to the event object, or the maximum wait time
timeout has expired. A thread may wait on up to 32 distinctly numbered
events that are expressed as bits in a single 32-bit word.
:param event: Address of the event object
:param events: Set of events to post to event, 0 will indicate wait from any events
.. c:function:: event_mask_t nxevent_tickwait(FAR event_t *event, event_mask_t events, uint32_t delay)
Wait for all of the specified events from the specified tick time.
This routine waits on event object event until any of the specified
events have been delivered to the event object, or the maximum wait time
timeout has expired. A thread may wait on up to 32 distinctly numbered
events that are expressed as bits in a single 32-bit word.
:param event: Address of the event object.
:param events: Set of events to post to event, 0 will indicate wait from any events
:param delay: Ticks to wait from the start time until the event is posted,
If ticks is zero, then this function is equivalent to nxevent_trywait().
.. c:function:: event_mask_t nxevent_trywait(FAR event_t *event, event_mask_t events)
Try wait for all of the specified events.
This routine waits on event object event until any of the specified
events have been delivered to the event object, or the maximum wait time
timeout has expired. A thread may wait on up to 32 distinctly numbered
events that are expressed as bits in a single 32-bit word.
:param event: Address of the event object
:param events: Set of events to post to event, 0 will indicate wait from any events
1 change: 1 addition & 0 deletions Documentation/reference/os/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ in other header files.
smp.rst
time_clock.rst
wqueue.rst
events.rst
250 changes: 250 additions & 0 deletions include/nuttx/event.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,250 @@
/****************************************************************************
* include/nuttx/event.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/

#ifndef __INCLUDE_NUTTX_EVENT_H
#define __INCLUDE_NUTTX_EVENT_H

/****************************************************************************
* Included Files
****************************************************************************/

#include <nuttx/config.h>

#include <errno.h>
#include <stdint.h>
#include <semaphore.h>

#include <nuttx/irq.h>
#include <nuttx/semaphore.h>
#include <nuttx/clock.h>

/****************************************************************************
* Pre-processor Definitions
****************************************************************************/

/* Initializers */

#define NXEVENT_INITIALIZER(e) {SEM_INITIALIZER(0), e}

/****************************************************************************
* Public Type Definitions
****************************************************************************/

typedef struct event_s event_t;
typedef uint32_t event_mask_t;

struct event_s
{
sem_t sem; /* Event Semaphore */
volatile event_mask_t events; /* Pending Events */
};

/****************************************************************************
* Public Data
****************************************************************************/

#ifndef __ASSEMBLY__

#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif

/****************************************************************************
* Public Function Prototypes
****************************************************************************/

/****************************************************************************
* Name: nxevent_init
*
* Description:
* This routine initializes an event object, Set of default events to post
* to event.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* It follows the NuttX internal error return policy: Zero (OK) is
* returned on success. A negated errno value is returned on failure.
*
****************************************************************************/

int nxevent_init(FAR event_t *event, event_mask_t events);

/****************************************************************************
* Name: nxevent_destroy
*
* Description:
* This function is used to destroy the event.
*
* Input Parameters:
* event - Address of the event object
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* It follows the NuttX internal error return policy: Zero (OK) is
* returned on success. A negated errno value is returned on failure.
*
****************************************************************************/

int nxevent_destroy(FAR event_t *event);

/****************************************************************************
* Name: nxevent_reset
*
* Description:
* Reset events mask to a specific value.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
*
* Returned Value:
* This is an internal OS interface, not available to applications, and
* hence follows the NuttX internal error return policy: Zero (OK) is
* returned on success. A negated errno value is returned on failure.
*
****************************************************************************/

int nxevent_reset(FAR event_t *event, event_mask_t events);

/****************************************************************************
* Name: nxevent_post
*
* Description:
* Post one or more events to an event object.
*
* This routine posts one or more events to an event object. All tasks
* waiting on the event object event whose waiting conditions become
* met by this posting immediately unpend.
*
* Posting differs from setting in that posted events are merged together
* with the current set of events tracked by the event object.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
* - Set events to 0 will ignored the waiting events and
* wake up the waiting thread.
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* It follows the NuttX internal error return policy: Zero (OK) is
* returned on success. A negated errno value is returned on failure.
*
* Assumptions:
* This function may be called from an interrupt handler.
*
****************************************************************************/

int nxevent_post(FAR event_t *event, event_mask_t events);

/****************************************************************************
* Name: nxevent_wait
*
* Description:
* Wait for all of the specified events.
*
* This routine waits on event object event until any of the specified
* events have been delivered to the event object, or the maximum wait time
* timeout has expired. A thread may wait on up to 32 distinctly numbered
* events that are expressed as bits in a single 32-bit word.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
* - Set events to 0 will indicate wait from any events
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* Return of matching events upon success.
* 0 if matching events were not received.
*
****************************************************************************/

event_mask_t nxevent_wait(FAR event_t *event, event_mask_t events);

/****************************************************************************
* Name: nxevent_tickwait
*
* Description:
* Wait for all of the specified events from the specified tick time.
*
* This routine waits on event object event until any of the specified
* events have been delivered to the event object, or the maximum wait time
* timeout has expired. A thread may wait on up to 32 distinctly numbered
* events that are expressed as bits in a single 32-bit word.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
* - Set events to 0 will indicate wait from any events
* delay - Ticks to wait from the start time until the event is
* posted. If ticks is zero, then this function is equivalent
* to nxevent_trywait().
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* Return of matching events upon success.
* 0 if matching events were not received within the specified time.
*
****************************************************************************/

event_mask_t nxevent_tickwait(FAR event_t *event,
event_mask_t events, uint32_t delay);

/****************************************************************************
* Name: nxevent_trywait
*
* Description:
* Try wait for all of the specified events.
*
* This routine waits on event object event until any of the specified
* events have been delivered to the event object, or the maximum wait time
* timeout has expired. A thread may wait on up to 32 distinctly numbered
* events that are expressed as bits in a single 32-bit word.
*
* Input Parameters:
* event - Address of the event object
* events - Set of events to post to event
* - Set events to 0 will indicate wait from any events
*
* Returned Value:
* This is an internal OS interface and should not be used by applications.
* Return of matching events upon success.
* 0 if matching events were not received.
*
****************************************************************************/

event_mask_t nxevent_trywait(FAR event_t *event, event_mask_t events);

#undef EXTERN
#ifdef __cplusplus
}
#endif

#endif /* __ASSEMBLY__ */
#endif /* __INCLUDE_NUTTX_EVENT_H */
7 changes: 7 additions & 0 deletions include/nuttx/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#include <nuttx/addrenv.h>
#include <nuttx/clock.h>
#include <nuttx/event.h>
#include <nuttx/irq.h>
#include <nuttx/mutex.h>
#include <nuttx/semaphore.h>
Expand Down Expand Up @@ -632,6 +633,12 @@ struct tcb_s

FAR void *waitobj; /* Object thread waiting on */

/* Schedule Event Group support *******************************************/

#ifdef CONFIG_SCHED_EVENTS
event_mask_t events; /* Schedule Events */
#endif

/* POSIX Signal Control Fields ********************************************/

sigset_t sigprocmask; /* Signals that are blocked */
Expand Down
Loading

0 comments on commit 4ad975c

Please sign in to comment.