2009-08-11 17:37:13 +02:00
|
|
|
From: Ulrich Hecht <uli@suse.de>
|
|
|
|
Date: Tue, 14 Apr 2009 16:25:41 +0200
|
2019-01-04 22:08:16 +01:00
|
|
|
Subject: qemu-cvs-gettimeofday
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
No clue what this is for.
|
2018-12-06 22:20:59 +01:00
|
|
|
|
|
|
|
[BR: minor edits to pass qemu's checkpatch script]
|
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
2009-08-11 17:37:13 +02:00
|
|
|
---
|
2018-12-06 22:20:59 +01:00
|
|
|
linux-user/syscall.c | 3 +++
|
|
|
|
1 file changed, 3 insertions(+)
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
2019-11-27 13:46:32 +01:00
|
|
|
index 171c0caef3a191c861e76493ccfc..25b0f3bba38b8629cb4bc027be96 100644
|
2009-08-11 17:37:13 +02:00
|
|
|
--- a/linux-user/syscall.c
|
|
|
|
+++ b/linux-user/syscall.c
|
2019-11-27 13:46:32 +01:00
|
|
|
@@ -8558,6 +8558,9 @@ static abi_long do_syscall1(void *cpu_env, int num, abi_long arg1,
|
2009-08-11 17:37:13 +02:00
|
|
|
case TARGET_NR_gettimeofday:
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
2018-12-06 22:20:59 +01:00
|
|
|
+ if (copy_from_user_timeval(&tv, arg1)) {
|
|
|
|
+ return -TARGET_EFAULT;
|
|
|
|
+ }
|
2009-08-11 17:37:13 +02:00
|
|
|
ret = get_errno(gettimeofday(&tv, NULL));
|
|
|
|
if (!is_error(ret)) {
|
|
|
|
if (copy_to_user_timeval(arg1, &tv))
|