From: pbrook Date: Thu, 29 May 2008 13:43:29 +0000 (+0000) Subject: Implement clock_nanosleep. X-Git-Tag: release_0_10_0~2073 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63d7651b76a3696b1ef46ec9c0b8a08686034988;p=thirdparty%2Fqemu.git Implement clock_nanosleep. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4613 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index cb4cf11e98d..fe97be1c9a6 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5560,6 +5560,17 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, break; } #endif +#ifdef TARGET_NR_clock_nanosleep + case TARGET_NR_clock_nanosleep: + { + struct timespec ts; + target_to_host_timespec(&ts, arg3); + ret = get_errno(clock_nanosleep(arg1, arg2, &ts, arg4 ? &ts : NULL)); + if (arg4) + host_to_target_timespec(arg4, &ts); + break; + } +#endif #if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address) case TARGET_NR_set_tid_address: