delete SYSCALL_DECLARE(gettimeofday)

This commit is contained in:
NAKAMURA Gou
2013-06-17 14:56:02 +09:00
parent 329dd42c32
commit 8a7429d872
2 changed files with 0 additions and 10 deletions

View File

@@ -589,7 +589,6 @@ int main_loop(int fd, int cpu, pthread_mutex_t *lock)
do_syscall_return(fd, cpu, ret, 0, 0, 0, 0);
break;
case __NR_gettimeofday:
case __NR_futex:
ret = gettimeofday((struct timeval *)dma_buf, NULL);
SET_ERR(ret);

View File

@@ -157,14 +157,6 @@ SYSCALL_DECLARE(open)
SYSCALL_FOOTER;
}
SYSCALL_DECLARE(gettimeofday)
{
SYSCALL_HEADER;
dkprintf("gettimeofday() \n");
SYSCALL_ARGS_1(MO);
SYSCALL_FOOTER;
}
SYSCALL_DECLARE(exit_group)
{
SYSCALL_HEADER;
@@ -923,7 +915,6 @@ static long (*syscall_table[])(int, ihk_mc_user_context_t *) = {
[39] = sys_getpid,
[56] = sys_clone,
[60] = sys_exit,
[96] = sys_gettimeofday,
[97] = sys_getrlimit,
[158] = sys_arch_prctl,
[202] = sys_futex,