Function esp_idf_hal::sys::vEventGroupDelete
source · pub unsafe extern "C" fn vEventGroupDelete(
xEventGroup: *mut EventGroupDef_t,
)
Expand description
@cond !DOC_EXCLUDE_HEADER_SECTION event_groups.h @code{c} void xEventGroupDelete( EventGroupHandle_t xEventGroup ); @endcode @endcond
Delete an event group that was previously created by a call to xEventGroupCreate(). Tasks that are blocked on the event group will be unblocked and obtain 0 as the event group’s value.
@param xEventGroup The event group being deleted.