delete SYSCALL_DECLARE(getcwd)

This commit is contained in:
NAKAMURA Gou
2013-06-12 17:42:24 +09:00
parent d6f6e4d6d7
commit 628793225f
2 changed files with 0 additions and 19 deletions

View File

@@ -450,16 +450,6 @@ SYSCALL_DECLARE(getpid)
return cpu_local_var(current)->pid;
}
// asmlinkage long sys_getcwd(char __user *buf, unsigned long size);
SYSCALL_DECLARE(getcwd)
{
dkprintf("getcwd\n");
SYSCALL_HEADER;
SYSCALL_ARGS_2(MO, D);
SYSCALL_FOOTER;
}
SYSCALL_DECLARE(access)
{
dkprintf("access: %s\n", (char*)ihk_mc_syscall_arg0(ctx));
@@ -957,7 +947,6 @@ static long (*syscall_table[])(int, ihk_mc_user_context_t *) = {
[39] = sys_getpid,
[56] = sys_clone,
[60] = sys_exit,
[79] = sys_getcwd,
[89] = sys_readlink,
[96] = sys_gettimeofday,
[97] = sys_getrlimit,