]> git.sur5r.net Git - cc65/commitdiff
Renamed 'UnBlockProcess' to 'UnblockProcess' and 'UnFreezeProcess' to 'UnfreezeProces...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 9 Feb 2012 07:37:08 +0000 (07:37 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 9 Feb 2012 07:37:08 +0000 (07:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5504 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/geos.sgml
include/geos/gprocess.h
libsrc/geos-cbm/jumptab.inc
libsrc/geos-common/process/processblock.s
libsrc/geos-common/process/processfreeze.s

index 5fb00ca305bfc7ddb1602309fb70acbc35e84e3e..a359735a7e3f575acf348f19d7c158005c0dea1a 100644 (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
index f0c4d60e98c600e5978a30be6ef94aefcbc1d62f..d784a2cc658e6df9e1dc9f3018023b166d4dfabf 100644 (file)
@@ -15,9 +15,9 @@ void __fastcall__ InitProcesses(char number, struct process *proctab);
 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);
 
index 26788b1a10c09dd8b66c947b86a1772ab63f95de..9f50decc197e0858b438b414e3099428c8dc3b93 100644 (file)
@@ -9,9 +9,9 @@ InitProcesses           =       $c103
 RestartProcess         =       $c106
 EnableProcess          =       $c109
 BlockProcess           =       $c10c
-UnBlockProcess         =       $c10f
+UnblockProcess         =       $c10f
 FreezeProcess          =       $c112
-UnFreezeProcess        =       $c115
+UnfreezeProcess        =       $c115
 HorizontalLine         =       $c118
 InvertLine             =       $c11b
 RecoverLine            =       $c11e
index c7358f39e73d998d05e085c1e60d8b9be70e8ea5..142cada00473343a9c7895a643d2fb2d94573882 100644 (file)
@@ -6,10 +6,10 @@
 ; 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"
            
@@ -17,6 +17,6 @@ _BlockProcess:
        tax
        jmp BlockProcess
            
-_UnBlockProcess:
+_UnblockProcess:
        tax
-       jmp UnBlockProcess
+       jmp UnblockProcess
index 7a96af50d428822cf50b647a47ee106c917be932..3fcf896f0741c95b68ab81a68b081b978b63e36b 100644 (file)
@@ -4,10 +4,10 @@
 ; 27.10.99
 
 ; void FreezeProcess   (char number);
-; void UnFreezeProcess (char number);
+; void UnfreezeProcess (char number);
 
            .export _FreezeProcess
-           .export _UnFreezeProcess
+           .export _UnfreezeProcess
 
            .include "jumptab.inc"
            
@@ -15,6 +15,6 @@ _FreezeProcess:
        tax
        jmp FreezeProcess
            
-_UnFreezeProcess:
+_UnfreezeProcess:
        tax
-       jmp UnFreezeProcess
+       jmp UnfreezeProcess