aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/chcore.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-17 14:08:53 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-17 14:08:53 +0000
commit598423fd309b4d0cf871bc1151b9d3d97a078cd6 (patch)
tree0a6e077a9dea07618985fc14f9410b7c59dbfc8d /src/templates/chcore.c
parenta9b4e8fc7225e8e2f26554b388f9d069d8f05b5e (diff)
downloadChibiOS-598423fd309b4d0cf871bc1151b9d3d97a078cd6.tar.gz
ChibiOS-598423fd309b4d0cf871bc1151b9d3d97a078cd6.tar.bz2
ChibiOS-598423fd309b4d0cf871bc1151b9d3d97a078cd6.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@622 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/templates/chcore.c')
-rw-r--r--src/templates/chcore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/chcore.c b/src/templates/chcore.c
index 84f0b7418..677c4ea2f 100644
--- a/src/templates/chcore.c
+++ b/src/templates/chcore.c
@@ -72,13 +72,13 @@ void sys_unlock_from_isr(void) {
* Disables all the interrupt sources.
* @note Of course non maskable interrupt sources are not included.
*/
-void sys_disable_all() {
+void sys_disable() {
}
/**
* Disables the interrupt sources that are not supposed to preempt the kernel.
*/
-void sys_disable(void) {
+void sys_suspend(void) {
}
/**