Lines Matching refs:threads
118 * Minimum number of threads to boot the kernel
123 * Maximum number of threads
131 int nr_threads; /* The idle threads do not count.. */
246 * Allocated stacks are cached and later reused by new threads,
773 u64 threads;
777 * The number of threads shall be limited such that the thread
781 threads = MAX_THREADS;
783 threads = div64_u64((u64) nr_pages * (u64) PAGE_SIZE,
786 if (threads > max_threads_suggested)
787 threads = max_threads_suggested;
789 max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS);
1644 * all threads in the group. Holding cred_guard_mutex is not
1823 * If the thread group leader exits before all other threads in the
1906 * Thread groups must share signals as well, and detached threads
1994 * kernel threads (PF_KTHREAD).
2024 * If multiple threads are within copy_process(), then this check
3128 int threads = max_threads;
3133 t.data = &threads;
3141 max_threads = threads;