From aaad958769e757093a258cfdd5c75f515534fd7a Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 13 Aug 2011 07:06:02 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3224 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/ports/RVCT/ARMCMx/chcoreasm_v7m.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'os/ports/RVCT/ARMCMx/chcoreasm_v7m.s') diff --git a/os/ports/RVCT/ARMCMx/chcoreasm_v7m.s b/os/ports/RVCT/ARMCMx/chcoreasm_v7m.s index f6acf2968..db2c747ca 100644 --- a/os/ports/RVCT/ARMCMx/chcoreasm_v7m.s +++ b/os/ports/RVCT/ARMCMx/chcoreasm_v7m.s @@ -36,8 +36,8 @@ ICSR_PENDSVSET EQU 0x10000000 AREA |.text|, CODE, READONLY IMPORT chThdExit - IMPORT chSchIsRescRequiredExI - IMPORT chSchDoRescheduleI + IMPORT chSchIsPreemptionRequired + IMPORT chSchDoReschedule /* * Performs a context switch between two threads. @@ -73,9 +73,9 @@ _port_thread_start PROC */ EXPORT _port_switch_from_isr _port_switch_from_isr PROC - bl chSchIsRescRequiredExI + bl chSchIsPreemptionRequired cbz r0, noreschedule - bl chSchDoRescheduleI + bl chSchDoReschedule noreschedule #if CORTEX_SIMPLIFIED_PRIORITY mov r3, #SCB_ICSR :AND: 0xFFFF -- cgit v1.2.3