diff options
| author | fukachan <fukachan> | 2005-05-31 13:14:03 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2005-05-31 13:14:03 +0000 |
| commit | 2363402810c5d9d75657c27c43f2523190139c33 (patch) | |
| tree | 44375ddc5459a9a69fc71ac22a9a76172f9d566c /fml/lib/FML/Process | |
| parent | 09e67018a8870386b756bc5cc38d3c085b2c4f0d (diff) | |
| download | fml8-2363402810c5d9d75657c27c43f2523190139c33.tar.gz fml8-2363402810c5d9d75657c27c43f2523190139c33.tar.bz2 fml8-2363402810c5d9d75657c27c43f2523190139c33.zip | |
fix naming convension (FNF).
set_incoming_message_cache_file_path -> incoming_message_set_cache_file_path
get_incoming_message_cache_file_path -> incoming_message_get_cache_file_path
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Kernel.pm | 4 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm index 2849d528..8cbd8db6 100644 --- a/fml/lib/FML/Process/Kernel.pm +++ b/fml/lib/FML/Process/Kernel.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Kernel.pm,v 1.254 2005/05/27 04:37:36 fukachan Exp $ +# $FML: Kernel.pm,v 1.255 2005/05/31 13:04:38 fukachan Exp $ # package FML::Process::Kernel; @@ -1170,7 +1170,7 @@ sub parse_incoming_message # (> modules) runs simultaneously, $path may be # overwritten by the next content. Instead, use $queue_file # since $queue_file (queue/incoming/ID) is unique. - $curproc->set_incoming_message_cache_file_path($queue_file); + $curproc->incoming_message_set_cache_file_path($queue_file); } } diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index b9165fc7..4a38ce42 100644 --- a/fml/lib/FML/Process/Utils.pm +++ b/fml/lib/FML/Process/Utils.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Utils.pm,v 1.128 2004/12/15 13:53:08 fukachan Exp $ +# $FML: Utils.pm,v 1.129 2005/05/26 13:01:58 fukachan Exp $ # package FML::Process::Utils; @@ -190,7 +190,7 @@ sub incoming_message # Arguments: OBJ($curproc) STR($path) # Side Effects: none # Return Value: none -sub set_incoming_message_cache_file_path +sub incoming_message_set_cache_file_path { my ($curproc, $path) = @_; my $pcb = $curproc->pcb(); @@ -204,7 +204,7 @@ sub set_incoming_message_cache_file_path # Arguments: OBJ($curproc) # Side Effects: none # Return Value: STR -sub get_incoming_message_cache_file_path +sub incoming_message_get_cache_file_path { my ($curproc) = @_; my $pcb = $curproc->pcb(); |
