]> Git Repo - qemu.git/commitdiff
bsd-user: Fix operand to cpu_x86_exec
authorRichard Henderson <[email protected]>
Wed, 29 Jul 2015 18:40:52 +0000 (11:40 -0700)
committerPeter Maydell <[email protected]>
Thu, 30 Jul 2015 11:38:49 +0000 (12:38 +0100)
Signed-off-by: Richard Henderson <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Message-id: 1438195252[email protected]
Signed-off-by: Peter Maydell <[email protected]>
bsd-user/main.c

index f46728bad82601568a8c9627842ff8b9d8ce5547..ee68daa395394852d33922be3fb3da4513ab7a78 100644 (file)
@@ -173,7 +173,7 @@ void cpu_loop(CPUX86State *env)
     //target_siginfo_t info;
 
     for(;;) {
-        trapnr = cpu_x86_exec(env);
+        trapnr = cpu_x86_exec(cs);
         switch(trapnr) {
         case 0x80:
             /* syscall from int $0x80 */
This page took 0.029149 seconds and 4 git commands to generate.