Home
last modified time | relevance | path

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

/llvm-project/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_annotation.cpp150 ucontext_t child_huge_stack_context; variable
161 if (swapcontext(&child_huge_stack_context, &orig_huge_stack_context) < 0) { in ChildHugeStack()
168 getcontext(&child_huge_stack_context); in DoRunHugeStack()
169 child_huge_stack_context.uc_stack.ss_sp = child_stack; in DoRunHugeStack()
170 child_huge_stack_context.uc_stack.ss_size = kHugeStackSize; in DoRunHugeStack()
171 makecontext(&child_huge_stack_context, (void (*)())ChildHugeStack, 0); in DoRunHugeStack()
174 child_huge_stack_context.uc_stack.ss_sp, in DoRunHugeStack()
175 child_huge_stack_context.uc_stack.ss_size); in DoRunHugeStack()
176 if (swapcontext(&orig_huge_stack_context, &child_huge_stack_context) < 0) { in DoRunHugeStack()
181 fake_stack_save, (const void **)&child_huge_stack_context.uc_stack.ss_sp, in DoRunHugeStack()
[all …]