diff options
Diffstat (limited to 'bsd-user/main.c')
-rw-r--r-- | bsd-user/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 315ba1d10c..bbba43f716 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -171,7 +171,7 @@ void cpu_loop(CPUX86State *env) //target_siginfo_t info; for(;;) { - trapnr = cpu_x86_exec(cs); + trapnr = cpu_exec(cs); switch(trapnr) { case 0x80: /* syscall from int $0x80 */ @@ -512,7 +512,7 @@ void cpu_loop(CPUSPARCState *env) //target_siginfo_t info; while (1) { - trapnr = cpu_sparc_exec(cs); + trapnr = cpu_exec(cs); switch (trapnr) { #ifndef TARGET_SPARC64 |