Searched refs:fork_frame (Results 1 – 3 of 3) sorted by relevance
145 struct fork_frame { in copy_thread() struct150 frame = (struct fork_frame *) (task_stack_page(p) + THREAD_SIZE) - 1; in copy_thread()163 memset(frame, 0, sizeof(struct fork_frame)); in copy_thread()171 memcpy(frame, container_of(current_pt_regs(), struct fork_frame, regs), in copy_thread()172 sizeof(struct fork_frame)); in copy_thread()
140 struct fork_frame *fork_frame; in copy_thread() local145 fork_frame = container_of(childregs, struct fork_frame, regs); in copy_thread()146 frame = &fork_frame->frame; in copy_thread()150 p->thread.sp = (unsigned long) fork_frame; in copy_thread()
42 struct fork_frame { struct