mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00
linux-user: implement clock_settime
This fixes glibc testsuite test rt/tst-clock2. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
b9f9908e2d
commit
12e3340c23
1 changed files with 12 additions and 0 deletions
|
@ -11878,6 +11878,18 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
|||
goto unimplemented_nowarn;
|
||||
#endif
|
||||
|
||||
#ifdef TARGET_NR_clock_settime
|
||||
case TARGET_NR_clock_settime:
|
||||
{
|
||||
struct timespec ts;
|
||||
|
||||
ret = target_to_host_timespec(&ts, arg2);
|
||||
if (!is_error(ret)) {
|
||||
ret = get_errno(clock_settime(arg1, &ts));
|
||||
}
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#ifdef TARGET_NR_clock_gettime
|
||||
case TARGET_NR_clock_gettime:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue