Skip to content

Commit

Permalink
Revert the change introduced in PR #1051 (#1056)
Browse files Browse the repository at this point in the history
As pointed out by Jeff Tenney, the comment introduced in the PR is not
accurate.

Signed-off-by: Gaurav Aggarwal <[email protected]>
  • Loading branch information
aggarg authored May 14, 2024
1 parent 2e0c623 commit a8376db
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions list.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,7 @@ void vListInsert( List_t * const pxList,
* 4) Using a queue or semaphore before it has been initialised or
* before the scheduler has been started (are interrupts firing
* before vTaskStartScheduler() has been called?).
* 5) Attempting to 'take' binary semaphores created using
* `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`
* APIs, before 'giving' them. Binary semaphores created using
* `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`,
* are created in a state such that the semaphore must first be
* 'given' using xSemaphoreGive() API before it can be 'taken' using
* xSemaphoreTake() API.
* 6) If the FreeRTOS port supports interrupt nesting then ensure that
* 5) If the FreeRTOS port supports interrupt nesting then ensure that
* the priority of the tick interrupt is at or below
* configMAX_SYSCALL_INTERRUPT_PRIORITY.
**********************************************************************/
Expand Down

0 comments on commit a8376db

Please sign in to comment.