summaryrefslogtreecommitdiff
path: root/fml/lib/File
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-12-22 03:32:00 +0000
committerfukachan <fukachan>2002-12-22 03:32:00 +0000
commitf9407ec8cbcc0e05c2e0782e40639069070be8ea (patch)
tree03ee18dd9dd947e505bf5b2074e144a54df2e7b0 /fml/lib/File
parent36959c12d8a1a6f0a774c41672b6f544dbd1dea4 (diff)
downloadfml8-f9407ec8cbcc0e05c2e0782e40639069070be8ea.tar.gz
fml8-f9407ec8cbcc0e05c2e0782e40639069070be8ea.tar.bz2
fml8-f9407ec8cbcc0e05c2e0782e40639069070be8ea.zip
add todo as comments
Diffstat (limited to 'fml/lib/File')
-rw-r--r--fml/lib/File/SimpleLock.pm7
-rw-r--r--fml/lib/File/Utils.pm7
2 files changed, 11 insertions, 3 deletions
diff --git a/fml/lib/File/SimpleLock.pm b/fml/lib/File/SimpleLock.pm
index 03ff5977..0667e9c9 100644
--- a/fml/lib/File/SimpleLock.pm
+++ b/fml/lib/File/SimpleLock.pm
@@ -2,7 +2,7 @@
#
# Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi
#
-# $FML: SimpleLock.pm,v 1.14 2002/09/22 14:56:57 fukachan Exp $
+# $FML: SimpleLock.pm,v 1.15 2002/12/13 04:19:59 fukachan Exp $
#
package File::SimpleLock;
@@ -12,6 +12,11 @@ use strict;
use Carp;
use ErrorStatus qw(error_set error error_clear);
+
+#
+# XXX-TODO: merge this module into IO::Adapter.
+#
+
=head1 NAME
File::SimpleLock - simple lock by flock(2)
diff --git a/fml/lib/File/Utils.pm b/fml/lib/File/Utils.pm
index bfe92e31..b37b1175 100644
--- a/fml/lib/File/Utils.pm
+++ b/fml/lib/File/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.17 2002/09/11 23:18:19 fukachan Exp $
+# $FML: Utils.pm,v 1.18 2002/09/22 14:56:57 fukachan Exp $
#
package File::Utils;
@@ -12,11 +12,14 @@ use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $ErrorString);
use Carp;
-
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(mkdirhier touch search_program copy append);
+#
+# XXX-TODO: we should modify sources not ot use this module ?
+#
+
=head1 NAME
File::Utils - utilities to handle files or directories