Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/list.c
diff options
context:
space:
mode:
authoralfred gedeon <alfred2g@hotmail.com>2020-08-21 21:30:39 +0300
committerGitHub <noreply@github.com>2020-08-21 21:30:39 +0300
commita038146915a59c3faff3c7ecabe05166d2cfa498 (patch)
tree40297abe12798b095e4d304facc6ceb4423dff9e /list.c
parent7cd4a4f2765f4836b4007b699f2b5a4c729a1841 (diff)
Style: Make freertos.org = FreeRTOS.org and add https (#134)
* Style: make freertos.org = FreeRTOS.org also add https * Style: Fix freertos into FreeRTOS * Style: Fix freertos into FreeRTOS Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
Diffstat (limited to 'list.c')
-rw-r--r--list.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/list.c b/list.c
index 0cbd2281e..7589c5a77 100644
--- a/list.c
+++ b/list.c
@@ -140,18 +140,18 @@ void vListInsert( List_t * const pxList,
{
/* *** NOTE ***********************************************************
* If you find your application is crashing here then likely causes are
- * listed below. In addition see https://www.freertos.org/FAQHelp.html for
+ * listed below. In addition see https://www.FreeRTOS.org/FAQHelp.html for
* more tips, and ensure configASSERT() is defined!
- * https://www.freertos.org/a00110.html#configASSERT
+ * https://www.FreeRTOS.org/a00110.html#configASSERT
*
* 1) Stack overflow -
- * see https://www.freertos.org/Stacks-and-stack-overflow-checking.html
+ * see https://www.FreeRTOS.org/Stacks-and-stack-overflow-checking.html
* 2) Incorrect interrupt priority assignment, especially on Cortex-M
* parts where numerically high priority values denote low actual
* interrupt priorities, which can seem counter intuitive. See
- * https://www.freertos.org/RTOS-Cortex-M3-M4.html and the definition
+ * https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html and the definition
* of configMAX_SYSCALL_INTERRUPT_PRIORITY on
- * https://www.freertos.org/a00110.html
+ * https://www.FreeRTOS.org/a00110.html
* 3) Calling an API function from within a critical section or when
* the scheduler is suspended, or calling an API function that does
* not end in "FromISR" from an interrupt.