From: Ben Pfaff Date: Sat, 5 Mar 2005 05:33:07 +0000 (+0000) Subject: Comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=e7303a830ec3a1403fa6b80f340ca3a0162d3fba Comment. --- diff --git a/src/filesys/directory.h b/src/filesys/directory.h index 6503a30..db16867 100644 --- a/src/filesys/directory.h +++ b/src/filesys/directory.h @@ -5,9 +5,10 @@ #include #include "devices/disk.h" -/* Maximum length of a filename. - This is the traditional UNIX maximum. - (This macro name comes from POSIX.1.) */ +/* Maximum length of a file name component. + This is the traditional UNIX maximum length. + After directories are implemented, this maximum length may be + retained, but much longer full path names must be allowed. */ #define NAME_MAX 14 struct file;