aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-20 10:18:03 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-20 10:18:03 +0000
commitb7f30ecaddf9004d866183e67705b2ea43aef6a9 (patch)
tree753194a0aa11dccd88584a4ac65bafb0447c4d75 /os/rt
parent2bbf9f1ea0cfb30bf61d189cc8c5f3552b363f01 (diff)
downloadChibiOS-b7f30ecaddf9004d866183e67705b2ea43aef6a9.tar.gz
ChibiOS-b7f30ecaddf9004d866183e67705b2ea43aef6a9.tar.bz2
ChibiOS-b7f30ecaddf9004d866183e67705b2ea43aef6a9.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6186 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt')
-rw-r--r--os/rt/ports/ARMCMx/chcore_v6m.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/rt/ports/ARMCMx/chcore_v6m.c b/os/rt/ports/ARMCMx/chcore_v6m.c
index 3a81a0ba4..5737fa886 100644
--- a/os/rt/ports/ARMCMx/chcore_v6m.c
+++ b/os/rt/ports/ARMCMx/chcore_v6m.c
@@ -19,7 +19,7 @@
*/
/**
- * @file GCC/ARMCMx/chcore_v6m.c
+ * @file ARMCMx/chcore_v6m.c
* @brief ARMv6-M architecture port code.
*
* @addtogroup ARMCMx_V6M_CORE
@@ -58,7 +58,7 @@
* @details The NMI vector is used for exception mode re-entering after a
* context switch.
*/
-void NMIVector(void) {
+void NMI_Handler(void) {
/* The extctx structure is pointed by the PSP register.*/
struct extctx *ctxp = (struct extctx *)__get_PSP();
@@ -81,7 +81,7 @@ void NMIVector(void) {
* @details The PendSV vector is used for exception mode re-entering after a
* context switch.
*/
-void PendSVVector(void) {
+void PendSV_Handler(void) {
/* The extctx structure is pointed by the PSP register.*/
struct extctx *ctxp = (struct extctx *)__get_PSP();