Update equeue.h

pull/14438/head
Eric Marks 2021-03-17 09:50:44 -05:00 committed by GitHub
parent ecbef81572
commit 13351c9253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ void equeue_post_user_allocated(equeue_t *queue, void (*cb)(void *), void *event
// Cancel an in-flight event
//
// Attempts to cancel an event referenced by the unique id returned from
// equeue_call or equeue_post. It is safe to call equeue_cancel after an event
// equeue_call or equeue_post. It is not safe to call equeue_cancel after an event
// has already been dispatched.
//
// The equeue_cancel function is irq safe.
@ -210,7 +210,7 @@ bool equeue_cancel(equeue_t *queue, int id);
// Cancel an in-flight user allocated event
//
// Attempts to cancel an event referenced by its address.
// It is safe to call equeue_cancel_user_allocated after an event
// It is not safe to call equeue_cancel_user_allocated after an event
// has already been dispatched.
//
// The equeue_cancel_user_allocated function is irq safe.