qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH ] linux-user: add tee systemcall support
@ 2009-05-16 13:02 vibisreenivasan
  2009-05-19  8:12 ` vibi sreenivasan
  0 siblings, 1 reply; 9+ messages in thread
From: vibisreenivasan @ 2009-05-16 13:02 UTC (permalink / raw)
  To: qemu-devel


Signed-off-by: vibi <vibi_sreenivasan@cms.com>
---
 linux-user/syscall.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 76f0c95..f2f87c3 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -6580,6 +6580,14 @@ abi_long do_syscall(void *cpu_env, int num,
abi_long arg1,
         break;
 #endif
 
+#ifdef TARGET_NR_tee
+    case TARGET_NR_tee:
+        {
+            ret = get_errno(tee(arg1,arg2,arg3,arg4));
+        }
+        break;
+#endif
+
     default:
     unimplemented:
         gemu_log("qemu: Unsupported syscall: %d\n", num);
-- 
1.6.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-05-22  5:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-16 13:02 [Qemu-devel] [PATCH ] linux-user: add tee systemcall support vibisreenivasan
2009-05-19  8:12 ` vibi sreenivasan
2009-05-19 10:31   ` vibi sreenivasan
2009-05-19 11:36   ` Riku Voipio
2009-05-19 12:36     ` vibi sreenivasan
2009-05-20 14:24       ` Riku Voipio
2009-05-21  6:41         ` vibi sreenivasan
2009-05-21 15:38           ` Arnaud Patard
2009-05-22  5:31             ` vibi sreenivasan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).