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

/xnu-2782.1.97/bsd/conf/
H A Dparam.c108 int aio_max_requests_per_process = CONFIG_AIO_PROCESS_MAX; variable
/xnu-2782.1.97/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.c159 extern int aio_max_requests_per_process;
1520 if (new_value >= aio_max_requests_per_process && new_value <= AIO_MAX_REQUESTS)
1537 int error = sysctl_io_number(req, aio_max_requests_per_process, sizeof(int), &new_value, &changed);
1541 aio_max_requests_per_process = new_value;

Completed in 40 milliseconds