delegate the open(2) with the generic forwarding.

This commit solves a problem that causes getpwnam()/getpwuid() to return
NULL.
This commit is contained in:
NAKAMURA Gou
2014-01-08 12:52:37 +09:00
parent afc38718a0
commit 6992b829a0
3 changed files with 5 additions and 18 deletions

View File

@@ -214,15 +214,6 @@ long syscall_generic_forwarding(int n, ihk_mc_user_context_t *ctx)
SYSCALL_FOOTER;
}
SYSCALL_DECLARE(open)
{
SYSCALL_HEADER;
dkprintf("open: %s\n", (char*)ihk_mc_syscall_arg0(ctx));
SYSCALL_ARGS_3(MI, D, D);
SYSCALL_FOOTER;
}
void
terminate(int rc, int sig, ihk_mc_user_context_t *ctx)
{