Add extra debug comment into list.c.

This commit is contained in:
Richard Barry 2013-06-23 07:27:46 +00:00
parent 1cfb7b77e5
commit e6903dac61
2 changed files with 1306 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -161,7 +161,8 @@ portTickType xValueOfInsertion;
interrupt priories, which can seem counter intuitive. See interrupt priories, which can seem counter intuitive. See
configMAX_SYSCALL_INTERRUPT_PRIORITY on http://www.freertos.org/a00110.html configMAX_SYSCALL_INTERRUPT_PRIORITY on http://www.freertos.org/a00110.html
3) Calling an API function from within a critical section or when 3) Calling an API function from within a critical section or when
the scheduler is suspended. the scheduler is suspended, or calling an API function that does
not end in "FromISR" from an interrupt.
4) Using a queue or semaphore before it has been initialised or 4) Using a queue or semaphore before it has been initialised or
before the scheduler has been started (are interrupts firing before the scheduler has been started (are interrupts firing
before vTaskStartScheduler() has been called?). before vTaskStartScheduler() has been called?).