]> Zhao Yanbai Git Server - minix.git/commitdiff
Increase max number of open files to 255 (more should be possible but does not seem...
authorErik van der Kouwe <erik@minix3.org>
Wed, 4 Aug 2010 13:35:19 +0000 (13:35 +0000)
committerErik van der Kouwe <erik@minix3.org>
Wed, 4 Aug 2010 13:35:19 +0000 (13:35 +0000)
include/minix/dirent.h
include/minix/limits.h

index eb248418c807ae6fdc1546386b09588c5dcc7b40..7ea231cec8b63396a64e00473ef34543403c1d81 100644 (file)
@@ -58,7 +58,7 @@ struct _v7_direct {
 
 /* Definitions for the directory(3) routines: */
 typedef struct {
-       char            _fd;    /* Filedescriptor of open directory */
+       int             _fd;    /* Filedescriptor of open directory */
        unsigned        _count; /* This many bytes in _buf */
        unsigned        _pos;   /* Position in _buf */
        char             _buf[_MAX_BLOCK_SIZE]; /* The size does not really
index 41dcc44556c6d637058ebeff60e3ba165b978b4e..c5d5576afe495c023dd9946099d3bfbb4a418df7 100644 (file)
@@ -6,7 +6,7 @@
 #ifndef _MINIX_LIMITS_H
 #define _MINIX_LIMITS_H
 
-#define __MINIX_OPEN_MAX     30        /* a process may have 30 files open */
+#define __MINIX_OPEN_MAX    255        /* a process may have 255 files open */
 #define __MINIX_PATH_MAX    255        /* a pathname may contain 255 chars */
 
 #endif /* _MINIX_LIMITS_H */