Searched refs:maxfilesperproc (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/xnu-2782.1.97/bsd/dev/
H A Dunix_startup.c327 maxfilesperproc = maxfiles/2;
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dfile_internal.h199 extern int maxfilesperproc;
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_resource.c143 __private_extern__ int maxfilesperproc = OPEN_MAX; /* per-proc open files limit */ variable
148 SYSCTL_INT(_kern, KERN_MAXFILESPERPROC, maxfilesperproc, CTLFLAG_RW | CTLFLAG_LOCKED,
149 &maxfilesperproc, 0, "Maximum files allowed open per process" );
1100 limp->rlim_cur > (rlim_t)maxfilesperproc) {
1105 limp->rlim_cur = maxfilesperproc;
1108 limp->rlim_max > (rlim_t)maxfilesperproc)
1109 limp->rlim_max = maxfilesperproc;

Completed in 185 milliseconds