<p>
<tt/EnableProcess/ forces the given process to execute by simulating the timer expiring.
-<sect2>BlockProcess and UnBlockProcess
+<sect2>BlockProcess and UnblockProcess
<p>
<tt/void BlockProcess (char processNumber)/
<p>
-<tt/void UnBlockProcess (char processNumber)/
+<tt/void UnblockProcess (char processNumber)/
<p>
<tt/BlockProcess/ disables the execution of the given process, but this does not disable the timers.
-It means that if you call <tt/UnBlockProcess/ before the timer runs out, the process will be executed.
+It means that if you call <tt/UnblockProcess/ before the timer runs out, the process will be executed.
<p>
-<tt/UnBlockProcess/ does the opposite.
+<tt/UnblockProcess/ does the opposite.
-<sect2>FreezeProcess and UnFreezeProcess
+<sect2>FreezeProcess and UnfreezeProcess
<p>
<tt/void FreezeProcess (char processNumber)/
<p>
-<tt/void UnFreezeProcess (char processNumber)/
+<tt/void UnfreezeProcess (char processNumber)/
<p>
-<tt/FreezeProcess/ disables timer for given process. <tt/UnFreezeProcess/ does the opposite.
+<tt/FreezeProcess/ disables timer for given process. <tt/UnfreezeProcess/ does the opposite.
This is not equal to <tt/RestartProcess/ as timers are not reloaded with initial value.
<sect2>Sleep
void __fastcall__ RestartProcess(char number);
void __fastcall__ EnableProcess(char number);
void __fastcall__ BlockProcess(char number);
-void __fastcall__ UnBlockProcess(char number);
+void __fastcall__ UnblockProcess(char number);
void __fastcall__ FreezeProcess(char number);
-void __fastcall__ UnFreezeProcess(char number);
+void __fastcall__ UnfreezeProcess(char number);
void __fastcall__ Sleep(unsigned jiffies);
; void InitProcesses (char number, struct process* proctab);
; (rest)
; void BlockProcess (char number);
-; void UnBlockProcess (char number);
+; void UnblockProcess (char number);
.export _BlockProcess
- .export _UnBlockProcess
+ .export _UnblockProcess
.include "jumptab.inc"
tax
jmp BlockProcess
-_UnBlockProcess:
+_UnblockProcess:
tax
- jmp UnBlockProcess
+ jmp UnblockProcess
; 27.10.99
; void FreezeProcess (char number);
-; void UnFreezeProcess (char number);
+; void UnfreezeProcess (char number);
.export _FreezeProcess
- .export _UnFreezeProcess
+ .export _UnfreezeProcess
.include "jumptab.inc"
tax
jmp FreezeProcess
-_UnFreezeProcess:
+_UnfreezeProcess:
tax
- jmp UnFreezeProcess
+ jmp UnfreezeProcess