* [Qemu-devel] [6222] CRIS: Clone flags are reversed on CRIS.
@ 2009-01-07 19:43 Edgar E. Iglesias
0 siblings, 0 replies; only message in thread
From: Edgar E. Iglesias @ 2009-01-07 19:43 UTC (permalink / raw)
To: qemu-devel
Revision: 6222
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6222
Author: edgar_igl
Date: 2009-01-07 19:43:47 +0000 (Wed, 07 Jan 2009)
Log Message:
-----------
CRIS: Clone flags are reversed on CRIS.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Modified Paths:
--------------
trunk/linux-user/syscall.c
Modified: trunk/linux-user/syscall.c
===================================================================
--- trunk/linux-user/syscall.c 2009-01-07 17:50:45 UTC (rev 6221)
+++ trunk/linux-user/syscall.c 2009-01-07 19:43:47 UTC (rev 6222)
@@ -4863,6 +4863,8 @@
case TARGET_NR_clone:
#if defined(TARGET_SH4)
ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg5, arg4));
+#elif defined(TARGET_CRIS)
+ ret = get_errno(do_fork(cpu_env, arg2, arg1, arg3, arg4, arg5));
#else
ret = get_errno(do_fork(cpu_env, arg1, arg2, arg3, arg4, arg5));
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-07 19:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-07 19:43 [Qemu-devel] [6222] CRIS: Clone flags are reversed on CRIS Edgar E. Iglesias
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).