minix/servers/hgfs/const.h

13 lines
379 B
C
Raw Normal View History

/* Number of inodes. */
/* The following number must not exceed 16. The i_num field is only a short. */
#define NUM_INODE_BITS 8
/* Number of entries in the name hashtable. */
#define NUM_HASH_SLOTS 1023
2010-06-27 19:19:50 +02:00
/* Arbitrary block size constant returned by fstatfs and statvfs.
* Also used by getdents. This is not the underlying data transfer unit size.
*/
#define BLOCK_SIZE 4096