2006-07-10 05:45:13 -06:00
|
|
|
/*
|
2007-10-16 02:27:00 -06:00
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-16 16:20:36 -06:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2012-10-07 20:27:32 -06:00
|
|
|
#include <linux/file.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/utsname.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <asm/current.h>
|
|
|
|
#include <asm/mman.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <asm/unistd.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
long sys_fork(void)
|
|
|
|
{
|
2012-09-20 07:28:25 -06:00
|
|
|
return do_fork(SIGCHLD, UPT_SP(¤t->thread.regs.regs),
|
2005-06-25 15:55:21 -06:00
|
|
|
¤t->thread.regs, 0, NULL, NULL);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
long sys_vfork(void)
|
|
|
|
{
|
2012-09-20 07:28:25 -06:00
|
|
|
return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
|
2005-06-25 15:55:21 -06:00
|
|
|
UPT_SP(¤t->thread.regs.regs),
|
|
|
|
¤t->thread.regs, 0, NULL, NULL);
|
2012-09-20 07:28:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
long sys_clone(unsigned long clone_flags, unsigned long newsp,
|
|
|
|
void __user *parent_tid, void __user *child_tid)
|
|
|
|
{
|
|
|
|
if (!newsp)
|
|
|
|
newsp = UPT_SP(¤t->thread.regs.regs);
|
|
|
|
|
|
|
|
return do_fork(clone_flags, newsp, ¤t->thread.regs, 0, parent_tid,
|
|
|
|
child_tid);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
long old_mmap(unsigned long addr, unsigned long len,
|
|
|
|
unsigned long prot, unsigned long flags,
|
|
|
|
unsigned long fd, unsigned long offset)
|
|
|
|
{
|
|
|
|
long err = -EINVAL;
|
|
|
|
if (offset & ~PAGE_MASK)
|
|
|
|
goto out;
|
|
|
|
|
2009-11-30 15:37:04 -07:00
|
|
|
err = sys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
|
2005-04-16 16:20:36 -06:00
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|