]> git.sur5r.net Git - cc65/blob - include/geos/gprocess.h
Removed (pretty inconsistently used) tab chars from source code base.
[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 #ifndef _GSTRUCT_H
11 #include <geos/gstruct.h>
12 #endif
13
14 void __fastcall__ InitProcesses(char number, struct process *proctab);
15 void __fastcall__ RestartProcess(char number);
16 void __fastcall__ EnableProcess(char number);
17 void __fastcall__ BlockProcess(char number);
18 void __fastcall__ UnblockProcess(char number);
19 void __fastcall__ FreezeProcess(char number);
20 void __fastcall__ UnfreezeProcess(char number);
21
22 void __fastcall__ Sleep(unsigned jiffies);
23
24 #endif