From: bellard Date: Sat, 23 Jul 2005 14:46:27 +0000 (+0000) Subject: [f]truncate64 support X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=667f38b167caebb38a16aef6df56db0dcb34d684;p=qemu.git [f]truncate64 support git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1515 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 0a4f07e31d..5a6d3821f5 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2756,11 +2756,13 @@ long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3, #endif #ifdef TARGET_NR_truncate64 case TARGET_NR_truncate64: - goto unimplemented; + ret = get_errno(truncate64((const char *)arg1, arg2)); + break; #endif #ifdef TARGET_NR_ftruncate64 case TARGET_NR_ftruncate64: - goto unimplemented; + ret = get_errno(ftruncate64(arg1, arg2)); + break; #endif #ifdef TARGET_NR_stat64 case TARGET_NR_stat64: