[f]truncate64 support

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1515 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2005-07-23 14:46:27 +00:00
parent 8346901560
commit 667f38b167

View File

@ -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: