sam7fc/include/rtos/critical.h

11 lines
189 B
C
Raw Normal View History

2008-02-23 00:25:31 +01:00
#ifndef _CRITICAL_H_
#define _CRITICAL_H_
/* disable Interrupts */
void enter_critical_section(void);
/* enable Interrupts */
void exit_critical_section(void);
#endif /* _CRITICAL_H_ */