Skip to content

Commit aa35627

Browse files
aggargschilkp
authored andcommitted
Revert the change introduced in PR FreeRTOS#1051 (FreeRTOS#1056)
As pointed out by Jeff Tenney, the comment introduced in the PR is not accurate. Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent 281702e commit aa35627

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

list.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,7 @@ void vListInsert( List_t * const pxList,
184184
* 4) Using a queue or semaphore before it has been initialised or
185185
* before the scheduler has been started (are interrupts firing
186186
* before vTaskStartScheduler() has been called?).
187-
* 5) Attempting to 'take' binary semaphores created using
188-
* `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`
189-
* APIs, before 'giving' them. Binary semaphores created using
190-
* `xSemaphoreCreateBinary()` or `xSemaphoreCreateBinaryStatic()`,
191-
* are created in a state such that the semaphore must first be
192-
* 'given' using xSemaphoreGive() API before it can be 'taken' using
193-
* xSemaphoreTake() API.
194-
* 6) If the FreeRTOS port supports interrupt nesting then ensure that
187+
* 5) If the FreeRTOS port supports interrupt nesting then ensure that
195188
* the priority of the tick interrupt is at or below
196189
* configMAX_SYSCALL_INTERRUPT_PRIORITY.
197190
**********************************************************************/

0 commit comments

Comments
 (0)