delete SYSCALL_DECLARE(lseek)

This commit is contained in:
NAKAMURA Gou
2013-06-12 17:39:24 +09:00
parent 58c5a45aad
commit 4494e54d38
2 changed files with 0 additions and 14 deletions

View File

@ -589,11 +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_lseek:
ret = lseek64(w.sr.args[0], w.sr.args[1], w.sr.args[2]);
do_syscall_return(fd, cpu, ret, 0, 0, 0, 0);
break;
case __NR_gettimeofday:
ret = gettimeofday((struct timeval *)dma_buf, NULL);
SET_ERR(ret);