mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
The _exit syscall is used for both thread termination in NPTL applications,
and process termination in legacy applications. Try to guess which we want based on the presence of multiple threads. Also implement locking when modifying the CPU list. Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6735 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0b8a988c5d
commit
c276471991
15 changed files with 94 additions and 17 deletions
|
@ -23,6 +23,8 @@
|
|||
|
||||
#define TARGET_LONG_BITS 32
|
||||
|
||||
#define CPUState struct CPUM68KState
|
||||
|
||||
#include "cpu-defs.h"
|
||||
|
||||
#include "softfloat.h"
|
||||
|
@ -207,7 +209,6 @@ void register_m68k_insns (CPUM68KState *env);
|
|||
#define TARGET_PAGE_BITS 10
|
||||
#endif
|
||||
|
||||
#define CPUState CPUM68KState
|
||||
#define cpu_init cpu_m68k_init
|
||||
#define cpu_exec cpu_m68k_exec
|
||||
#define cpu_gen_code cpu_m68k_gen_code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue