diff options
| author | fukachan <fukachan> | 2002-02-13 10:41:16 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-02-13 10:41:16 +0000 |
| commit | 32c320e801127a43117b780875d4d87e1e3cb4b7 (patch) | |
| tree | 14c4bd2f532a57c3dc757bf230b65ece341438d2 /fml/lib/FML/Command/User/send.pm | |
| parent | b520a2969d5b8e2d0d7480e1a5436a5c5ee4d69b (diff) | |
| download | fml8-32c320e801127a43117b780875d4d87e1e3cb4b7.tar.gz fml8-32c320e801127a43117b780875d4d87e1e3cb4b7.tar.bz2 fml8-32c320e801127a43117b780875d4d87e1e3cb4b7.zip | |
define access method need_lock().
each command module determins whether it needs lock or not.
Diffstat (limited to 'fml/lib/FML/Command/User/send.pm')
| -rw-r--r-- | fml/lib/FML/Command/User/send.pm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/fml/lib/FML/Command/User/send.pm b/fml/lib/FML/Command/User/send.pm index 63f93279..a3438d32 100644 --- a/fml/lib/FML/Command/User/send.pm +++ b/fml/lib/FML/Command/User/send.pm @@ -1,11 +1,11 @@ #-*- perl -*- # -# Copyright (C) 2001 Ken'ichi Fukamachi +# Copyright (C) 2001,2002 Ken'ichi Fukamachi # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: send.pm,v 1.3 2001/12/22 09:21:05 fukachan Exp $ +# $FML: send.pm,v 1.4 2001/12/22 09:53:10 fukachan Exp $ # package FML::Command::User::send; @@ -19,6 +19,13 @@ use FML::Command::User::get; @ISA = qw(FML::Command::User::get); +# Descriptions: need lock or not +# Arguments: none +# Side Effects: none +# Return Value: NUM( 1 or 0) +sub need_lock { 1;} + + # Descriptions: send articles, files, et.al... # Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) # Side Effects: forward request to get module @@ -48,7 +55,7 @@ Ken'ichi Fukamachi =head1 COPYRIGHT -Copyright (C) 2001 Ken'ichi Fukamachi +Copyright (C) 2001,2002 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |
