fix build of blue again gcc does not have _disable and _enable, but MSVC have it.

svn path=/trunk/; revision=24312
This commit is contained in:
Magnus Olsen 2006-09-30 10:52:41 +00:00
parent c3a99cfb3e
commit ce35dd9b7b

View file

@ -31,6 +31,12 @@
extern "C" {
#endif
#ifdef __GNUC__
/* Available as intrinsics on MSVC */
static __inline void _disable(void) {__asm__ __volatile__("cli\n");}
static __inline void _enable(void) {__asm__ __volatile__("sti\n");}
#endif
/*
** Definitions specific to this Device Driver Kit
*/