Home
last modified time | relevance | path

Searched refs:aio_worker_threads (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.121.3/bsd/conf/
H A Dparam.c122 int aio_worker_threads = CONFIG_AIO_THREAD_COUNT; variable
/xnu-8020.121.3/bsd/kern/
H A Dkern_aio.c283 extern int aio_worker_threads; /* AIO_THREAD_COUNT - configurable */
2165 _aio_create_worker_threads(aio_worker_threads); in aio_init()
H A Dkern_sysctl.c181 extern int aio_worker_threads;
1684 int error = sysctl_io_number(req, aio_worker_threads, sizeof(int), &new_value, &changed); in sysctl_aiothreads()
1687 if (new_value > aio_worker_threads) { in sysctl_aiothreads()
1688 _aio_create_worker_threads((new_value - aio_worker_threads)); in sysctl_aiothreads()
1689 aio_worker_threads = new_value; in sysctl_aiothreads()