summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source
diff options
context:
space:
mode:
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-06-07 12:39:56 +0000
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2013-06-07 12:39:56 +0000
commitee0ef2ca0e2f869dddb0874fd31db4cf2db6609b (patch)
treeefca7e0f2bbc237ebef16754eaba255f1e1ea684 /FreeRTOS/Source
parent52b7bd57730536e4fe26f5637929f304b97eb689 (diff)
downloadfreertos-ee0ef2ca0e2f869dddb0874fd31db4cf2db6609b.tar.gz
Update ports that have their tick configuration in an application callback to use xTaskIncrementTick() in place of vTaskIncrementTick().
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@1923 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source')
-rw-r--r--FreeRTOS/Source/portable/GCC/RX600/port.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Source/portable/GCC/RX600/port.c b/FreeRTOS/Source/portable/GCC/RX600/port.c
index 29731368b..dc41b616c 100644
--- a/FreeRTOS/Source/portable/GCC/RX600/port.c
+++ b/FreeRTOS/Source/portable/GCC/RX600/port.c
@@ -364,7 +364,7 @@ void vTickISR( void )
necessitates. Ensure IPL is at the max syscall value first. */
portDISABLE_INTERRUPTS_FROM_KERNEL_ISR();
{
- if( TaskIncrementTick() != pdFALSE )
+ if( xTaskIncrementTick() != pdFALSE )
{
taskYIELD();
}