Home | History | Annotate | Download | only in process

Lines Matching refs:stack

708 // This function runs on the stack specified on the clone call. It uses longjmp
709 // to switch back to the original stack so the child can return from sys_clone.
719 // This function is noinline to ensure that stack_buf is below the stack pointer
721 // compiled with FORTIFY_SOURCE, glibc's longjmp checks that the stack is moved
725 // |stack_buf| is allocated on thread stack instead of ASan's fake stack.
727 // new stack pointers and print a warning that may confuse the user.
737 // specifying a new stack, so we use setjmp/longjmp to emulate
742 // The stack grows downward.
743 void* stack = stack_buf + sizeof(stack_buf);
747 return clone(&CloneHelper, stack, flags, env, ptid, nullptr, ctid);