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

/darwin-on-arm/xnu/bsd/conf/
H A Dparam.c111 int aio_max_requests_per_process = CONFIG_AIO_PROCESS_MAX; variable
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_aio.c252 extern int aio_max_requests_per_process; /* AIO_PROCESS_MAX - configurable */
1126 if ( uap->nent < 1 || uap->nent > aio_max_requests_per_process ) {
1579 aio_get_process_count( entryp->procp ) >= aio_max_requests_per_process ||
1944 if (aio_get_process_count( procp ) >= aio_max_requests_per_process) {
H A Dkern_sysctl.c153 extern int aio_max_requests_per_process;
2110 if (new_value >= aio_max_requests_per_process && new_value <= AIO_MAX_REQUESTS)
2127 int error = sysctl_io_number(req, aio_max_requests_per_process, sizeof(int), &new_value, &changed);
2131 aio_max_requests_per_process = new_value;

Completed in 26 milliseconds