]> git.sur5r.net Git - cc65/blob - include/geos/gprocess.h
Fix 32/64-bit int/pointer casts
[cc65] / include / geos / gprocess.h
1 /*
2   GEOS processes (~multitasking) functions
3
4   by Maciej 'YTM/Elysium' Witkowiak
5 */
6
7 #ifndef _GPROCESS_H
8 #define _GPROCESS_H
9
10 #include <geos/gstruct.h>
11
12 void __fastcall__ InitProcesses(char number, struct process *proctab);
13 void __fastcall__ RestartProcess(char number);
14 void __fastcall__ EnableProcess(char number);
15 void __fastcall__ BlockProcess(char number);
16 void __fastcall__ UnblockProcess(char number);
17 void __fastcall__ FreezeProcess(char number);
18 void __fastcall__ UnfreezeProcess(char number);
19
20 void __fastcall__ Sleep(unsigned jiffies);
21
22 #endif