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

/xnu-2422.115.4/bsd/conf/
H A Dparam.c111 int aio_max_requests_per_process = CONFIG_AIO_PROCESS_MAX; variable
/xnu-2422.115.4/bsd/kern/
H A Dkern_aio.c252 extern int aio_max_requests_per_process; /* AIO_PROCESS_MAX - configurable */
1125 if ( uap->nent < 1 || uap->nent > aio_max_requests_per_process ) {
1578 aio_get_process_count( entryp->procp ) >= aio_max_requests_per_process ||
1954 if (aio_get_process_count( procp ) >= aio_max_requests_per_process) {
H A Dkern_sysctl.c158 extern int aio_max_requests_per_process;
2125 if (new_value >= aio_max_requests_per_process && new_value <= AIO_MAX_REQUESTS)
2142 int error = sysctl_io_number(req, aio_max_requests_per_process, sizeof(int), &new_value, &changed);
2146 aio_max_requests_per_process = new_value;

Completed in 29 milliseconds