comparison src/os_unix.h @ 1611:c669f3280f59 v7.1.324

updated for version 7.1-324
author vimboss
date Fri, 20 Jun 2008 16:07:02 +0000
parents dbd226be80b1
children 720a59d79bcd
comparison
equal deleted inserted replaced
1610:4541e06d4fb9 1611:c669f3280f59
430 430
431 /* 431 /*
432 * Unix has plenty of memory, use large buffers 432 * Unix has plenty of memory, use large buffers
433 */ 433 */
434 #define CMDBUFFSIZE 1024 /* size of the command processing buffer */ 434 #define CMDBUFFSIZE 1024 /* size of the command processing buffer */
435 #define MAXPATHL 1024 /* Unix has long paths and plenty of memory */ 435
436 /* Use the system path length if it makes sense. */
437 #if defined(PATH_MAX) && (PATH_MAX > 1000)
438 # define MAXPATHL PATH_MAX
439 #else
440 # define MAXPATHL 1024
441 #endif
436 442
437 #define CHECK_INODE /* used when checking if a swap file already 443 #define CHECK_INODE /* used when checking if a swap file already
438 exists for a file */ 444 exists for a file */
439 #ifdef VMS /* Use less memory because of older systems */ 445 #ifdef VMS /* Use less memory because of older systems */
440 # ifndef DFLT_MAXMEM 446 # ifndef DFLT_MAXMEM