Home | History | Annotate | Download | only in lib

Lines Matching full:path_max

1 /* Define PATH_MAX somehow.  Requires sys/types.h.
21 /* POSIX:2008 defines PATH_MAX to be the maximum number of bytes in a filename,
24 PATH_MAX is not defined on systems which have no limit on filename length,
27 This file does *not* define PATH_MAX always. Programs that use this file
31 #ifdef PATH_MAX
33 #ifndef PATH_MAX
34 # define PATH_MAX 8192
37 #ifndef PATH_MAX
38 # define PATH_MAX pathconf ("/", _PC_PATH_MAX)
51 # if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
55 # if !defined PATH_MAX && defined MAXPATHLEN
56 # define PATH_MAX MAXPATHLEN
60 /* On HP-UX, PATH_MAX designates the maximum number of bytes in a filename,
62 Additionally, when _XOPEN_SOURCE is defined to 500 or more, PATH_MAX is
64 # undef PATH_MAX
65 # define PATH_MAX 1024
79 # undef PATH_MAX
80 # define PATH_MAX 260