root/Whitix/trunk/include/preempt.h

Revision 1813, 229 bytes (checked in by mwhitworth, 3 years ago)

Fix formatting in PreemptFastEnable.

Line 
1#ifndef PREEMPT_H
2#define PREEMPT_H
3
4void PreemptDisable();
5void PreemptEnable();
6
7#define PreemptFastEnable() \
8        (currThread)->preemptCount--
9
10int PreemptCanSchedule();
11
12#define PreemptCount() (currThread->preemptCount)
13
14#endif
Note: See TracBrowser for help on using the browser.