From 97773847f7c4c8b01a10d1740b9662a5c78181e5 Mon Sep 17 00:00:00 2001 From: bernie Date: Fri, 31 Dec 2004 17:02:47 +0000 Subject: [PATCH] IRQ_SAVE_DISABLE(), IRQ_RESTORE(): Add null stubs for x86. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@322 38d2e660-2303-0410-9eaa-f027e97ec537 --- cpu.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cpu.h b/cpu.h index 44c123ed..7e9abe8c 100755 --- a/cpu.h +++ b/cpu.h @@ -17,6 +17,9 @@ /*#* *#* $Log$ + *#* Revision 1.27 2004/12/31 17:02:47 bernie + *#* IRQ_SAVE_DISABLE(), IRQ_RESTORE(): Add null stubs for x86. + *#* *#* Revision 1.26 2004/12/13 12:08:12 bernie *#* DISABLE_IRQSAVE, ENABLE_IRQRESTORE, DISABLE_INTS, ENABLE_INTS: Remove obsolete macros. *#* @@ -108,6 +111,8 @@ #define NOP asm volatile ("nop") #define IRQ_DISABLE /* nothing */ #define IRQ_ENABLE /* nothing */ + #define IRQ_SAVE_DISABLE(x) /* nothing */ + #define IRQ_RESTORE(x) /* nothing */ typedef uint32_t cpuflags_t; // FIXME typedef uint32_t cpustack_t; -- 2.25.1