Renamed 'UnBlockProcess' to 'UnblockProcess' and 'UnFreezeProcess' to 'UnfreezeProcess' to matchall 3rd party docs.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5504 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2012-02-09 07:37:08 +00:00
parent 129d3bf872
commit 2a0fd9bda0
5 changed files with 19 additions and 19 deletions

View File

@@ -1199,24 +1199,24 @@ after <tt/InitProcesses/, because it resets all flags and counters and it starts
<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