mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
13 lines
214 B
C
13 lines
214 B
C
/*
|
|
* Kernel preemption functions.
|
|
*/
|
|
#ifndef __PREEMPT_H__
|
|
#define __PREEMPT_H__
|
|
|
|
void preempt_enable(void);
|
|
void preempt_disable(void);
|
|
int preemptive(void);
|
|
int preempt_count(void);
|
|
|
|
#endif /* __PREEMPT_H__ */
|