]> Zhao Yanbai Git Server - minix.git/commitdiff
Made dirent filename len a macro; corrected comment bug in bios.h reported
authorBen Gras <ben@minix3.org>
Mon, 18 Jul 2005 09:11:48 +0000 (09:11 +0000)
committerBen Gras <ben@minix3.org>
Mon, 18 Jul 2005 09:11:48 +0000 (09:11 +0000)
by Andrew Schilt <aschilt@cox.net>.

include/dirent.h
include/ibm/bios.h

index fce36a13dcbd3a48d1ace87c051ed15118f1da2d..cd373f4ba9ea2671d544dfb48a2b3ec1f591f414 100755 (executable)
@@ -67,10 +67,12 @@ typedef struct {
        struct _fl_direct  _v7f[FLEX_PER_V7];    /* V7 entry transformed to flex */
 } DIR;
 
+#define _DIRENT_NAME_LEN 61
+
 struct dirent {                /* Largest entry (8 slots) */
        ino_t           d_ino;          /* I-node number */
        unsigned char   d_extent;       /* Extended with this many slots */
-       char            d_name[61];     /* Null terminated name */
+       char            d_name[_DIRENT_NAME_LEN];       /* Null terminated name */
 };
 
 /* Function Prototypes. */
index b5d22db4e35ac36cb77b5b2744de97982058398b..b3b1c987613de15b9c90003d506beecfbd7bd751 100644 (file)
@@ -38,7 +38,7 @@
  * used. Other addresses may be defined below when new features are added. 
  */
 
-/* Parallel ports (LPT1-LPT4). */
+/* Serial ports (COM1-COM4). */
 #define COM1_IO_PORT_ADDR       0x400   /* COM1 port address */
 #define COM1_IO_PORT_SIZE       2L    
 #define COM2_IO_PORT_ADDR       0x402   /* COM2 port address */
@@ -48,7 +48,7 @@
 #define COM4_IO_PORT_ADDR       0x406   /* COM4 port address */
 #define COM4_IO_PORT_SIZE       2L    
         
-/* Serial ports (COM1-COM4). */
+/* Parallel ports (LPT1-LPT4). */
 #define LPT1_IO_PORT_ADDR       0x408   /* LPT1 port address */
 #define LPT1_IO_PORT_SIZE       2L    
 #define LPT2_IO_PORT_ADDR       0x40A   /* LPT2 port address */