Files
linux-apfs/arch/um/kernel/exec.c
T

51 lines
1.2 KiB
C
Raw Normal View History

2006-07-10 04:45:13 -07:00
/*
2007-10-16 01:27:00 -07:00
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
2005-04-16 15:20:36 -07:00
* Licensed under the GPL
*/
#include <linux/stddef.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/ptrace.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <asm/current.h>
#include <asm/processor.h>
#include <asm/uaccess.h>
#include <as-layout.h>
#include <mem_user.h>
#include <skas.h>
#include <os.h>
2005-04-16 15:20:36 -07:00
void flush_thread(void)
{
void *data = NULL;
int ret;
arch_flush_thread(&current->thread.arch);
2008-02-04 22:31:01 -08:00
ret = unmap(&current->mm->context.id, 0, STUB_START, 0, &data);
ret = ret || unmap(&current->mm->context.id, STUB_END,
2008-02-08 04:22:07 -08:00
host_task_size - STUB_END, 1, &data);
2007-10-16 01:27:00 -07:00
if (ret) {
printk(KERN_ERR "flush_thread - clearing address space failed, "
"err = %d\n", ret);
force_sig(SIGKILL, current);
}
get_safe_registers(current_pt_regs()->regs.gp,
current_pt_regs()->regs.fp);
2007-10-16 01:27:06 -07:00
__switch_mm(&current->mm->context.id);
2005-04-16 15:20:36 -07:00
}
void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)
{
PT_REGS_IP(regs) = eip;
PT_REGS_SP(regs) = esp;
current->ptrace &= ~PT_DTRACE;
#ifdef SUBARCH_EXECVE1
SUBARCH_EXECVE1(regs->regs);
#endif
2005-04-16 15:20:36 -07:00
}
EXPORT_SYMBOL(start_thread);