root/Whitix/trunk/include/preempt.h
| Revision 1813, 229 bytes (checked in by mwhitworth, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | #ifndef PREEMPT_H |
| 2 | #define PREEMPT_H |
| 3 | |
| 4 | void PreemptDisable(); |
| 5 | void PreemptEnable(); |
| 6 | |
| 7 | #define PreemptFastEnable() \ |
| 8 | (currThread)->preemptCount-- |
| 9 | |
| 10 | int PreemptCanSchedule(); |
| 11 | |
| 12 | #define PreemptCount() (currThread->preemptCount) |
| 13 | |
| 14 | #endif |
Note: See TracBrowser
for help on using the browser.
