2017-10-04 00:19:51 +02:00
|
|
|
From cfda7e6b1ea8a2851487abe2c8c0d667afe8f9e6 Mon Sep 17 00:00:00 2001
|
2009-08-11 17:37:13 +02:00
|
|
|
From: Ulrich Hecht <uli@suse.de>
|
|
|
|
Date: Tue, 14 Apr 2009 16:25:41 +0200
|
2012-02-01 00:10:40 +01:00
|
|
|
Subject: [PATCH] qemu-cvs-gettimeofday
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
No clue what this is for.
|
|
|
|
---
|
2014-01-17 23:04:30 +01:00
|
|
|
linux-user/syscall.c | 2 ++
|
|
|
|
1 file changed, 2 insertions(+)
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
2017-08-31 00:22:50 +02:00
|
|
|
index 9b6364a266..ec6ee23f96 100644
|
2009-08-11 17:37:13 +02:00
|
|
|
--- a/linux-user/syscall.c
|
|
|
|
+++ b/linux-user/syscall.c
|
2017-08-31 00:22:50 +02:00
|
|
|
@@ -8950,6 +8950,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
2009-08-11 17:37:13 +02:00
|
|
|
case TARGET_NR_gettimeofday:
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
+ if(copy_from_user_timeval(&tv, arg1))
|
2011-12-11 03:42:09 +01:00
|
|
|
+ goto 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))
|