/src/tests/lib/libc/sys/ |
t_fork.c | 280 void *stack, *stack_base; local in function:nested_raw 286 stack_base = stack; 288 stack_base = (char *)stack + stack_size; 301 child2 = __clone(clone_func, stack_base, flags, NULL);
|
t_futex_robust.c | 61 void *stack_base; member in struct:lwp_data 77 lwp_data.stack_base = mmap(NULL, STACK_SIZE, 80 ATF_REQUIRE(lwp_data.stack_base != MAP_FAILED); 82 &lwp_data, NULL, lwp_data.stack_base, STACK_SIZE); 89 if (lwp_data.stack_base != NULL && 90 lwp_data.stack_base != MAP_FAILED) { 91 (void) munmap(lwp_data.stack_base, STACK_SIZE);
|
t_ptrace_clone_wait.h | 46 void *stack, *stack_base; local in function:clone_body 52 stack_base = stack; 54 stack_base = (char *)stack + stack_size; 66 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base, 344 void *stack, *stack_base; variable in typeref:typename:void ** 350 stack_base = stack; 352 stack_base = (char *)stack + stack_size; 377 SYSCALL_REQUIRE((child2 = __clone(clone_func, stack_base, 691 void *stack, *stack_base; variable in typeref:typename:void ** 697 stack_base = stack [all...] |
t_futex_ops.c | 73 void *stack_base; member in struct:lwp_data 161 REQUIRE_LIBC(d->stack_base = mmap(NULL, STACK_SIZE, 165 _lwp_makecontext(&d->context, func, d, NULL, d->stack_base, 267 if (d->stack_base != NULL && d->stack_base != MAP_FAILED) { 268 (void) munmap(d->stack_base, STACK_SIZE);
|
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 154 void *stack_base; member in struct:thread_stack_ll 190 UnmapOrDie(stack->stack_base, stack->size); 199 cur_stack->stack_base = (char *)unsafe_stack_start - unsafe_stack_guard;
|