Home
last modified time | relevance | path

Searched refs:sysconf (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/tee/
H A Dtee.c40 # define sysconf(x) -1 macro
114 maxfiles = sysconf(_SC_OPEN_MAX); /* or fill in 10 or so */ in main()
/vim-8.2.3635/src/
H A Dconfig.h.in508 /* Define if _SC_SIGSTKSZ is available via sysconf() */
H A Dos_unix.c469 ) * sysconf(_SC_PAGESIZE); in mch_total_mem()
539 pagesize = sysconf(_SC_PAGESIZE); in mch_total_mem()
540 pagecount = sysconf(_SC_PHYS_PAGES); in mch_total_mem()
802 if ((size = sysconf(_SC_SIGSTKSZ)) > -1) in get_signal_stack_size()
H A Dconfigure.ac4191 dnl sysconf() may exist but not support what we want to use
4192 AC_MSG_CHECKING(for sysconf)
4195 [ (void)sysconf(_SC_PAGESIZE);
4196 (void)sysconf(_SC_PHYS_PAGES);
4201 dnl check if we have _SC_SIGSTKSZ via sysconf()
4202 AC_MSG_CHECKING(for _SC_SIGSTKSZ via sysconf())
4205 [ (void)sysconf(_SC_SIGSTKSZ);
/vim-8.2.3635/src/auto/
H A Dconfigure1185 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1188 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
/vim-8.2.3635/runtime/doc/
H A Dversion6.txt5448 Solution: Get the amount of physical memory with sysctl(), sysconf() or
H A Dversion8.txt24519 Solution: Use sysconf() instead. (Ozaki Kiichi, closes #2741)