| /f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | thread.h | 47 #define thread_create_named(name, stk, stksize, func, arg, len, \ argument 49 __thread_create(stk, stksize, (thread_func_t)func, \ 53 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \ argument 54 __thread_create(stk, stksize, (thread_func_t)func, \ 64 extern kthread_t *__thread_create(caddr_t stk, size_t stksize,
|
| /f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | proc.h | 67 do_thread_create(caddr_t stk, size_t stksize, void (*proc)(void *), void *arg, in do_thread_create() argument 86 stksize / PAGE_SIZE, "zfskern", "%s", name); in do_thread_create() 98 #define thread_create_named(name, stk, stksize, proc, arg, len, \ argument 100 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri, name) 101 #define thread_create(stk, stksize, proc, arg, len, pp, state, pri) \ argument 102 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri, #proc)
|
| /f-stack/freebsd/mips/mips/ |
| H A D | db_trace.c | 96 int more, stksize, j; in stacktrace_subr() local 111 stksize = 0; in stacktrace_subr() 212 stksize = 0; in stacktrace_subr() 340 stksize = -((short)i.IType.imm); in stacktrace_subr() 359 stksize); in stacktrace_subr() 387 if (pc == next_pc && stksize == 0) in stacktrace_subr() 391 sp += stksize; in stacktrace_subr()
|
| /f-stack/freebsd/contrib/openzfs/lib/libzpool/ |
| H A D | kernel.c | 79 zk_thread_create(void (*func)(void *), void *arg, size_t stksize, int state) in zk_thread_create() argument 101 if (stksize == 0) { in zk_thread_create() 105 stksize = TS_STACK_MAX; in zk_thread_create() 107 stksize = MAX(atoi(stkstr), TS_STACK_MIN); in zk_thread_create() 110 VERIFY3S(stksize, >, 0); in zk_thread_create() 111 stksize = P2ROUNDUP(MAX(stksize, TS_STACK_MIN), PAGESIZE); in zk_thread_create() 117 VERIFY0(pthread_attr_setstacksize(&attr, stksize)); in zk_thread_create()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | zfs_context.h | 229 #define thread_create_named(name, stk, stksize, func, arg, len, \ 231 zk_thread_create(func, arg, stksize, state) 232 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \ 233 zk_thread_create(func, arg, stksize, state) 250 size_t stksize, int state);
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-thread.c | 80 __thread_create(caddr_t stk, size_t stksize, thread_func_t func, in __thread_create() argument
|