mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
cpu: Move host_tid field to CPUState
Change gdbstub's cpu_index() argument to CPUState now that CPUArchState is no longer used. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
6ae064fc67
commit
0d34282fdd
6 changed files with 22 additions and 12 deletions
|
@ -191,7 +191,6 @@ typedef struct CPUWatchpoint {
|
|||
int exception_index; \
|
||||
\
|
||||
CPUArchState *next_cpu; /* next CPU sharing TB cache */ \
|
||||
uint32_t host_tid; /* host thread ID */ \
|
||||
int running; /* Nonzero if cpu is currently running(usermode). */ \
|
||||
/* user data */ \
|
||||
void *opaque; \
|
||||
|
|
|
@ -30,12 +30,11 @@ void gdb_register_coprocessor(CPUArchState *env,
|
|||
gdb_reg_cb get_reg, gdb_reg_cb set_reg,
|
||||
int num_regs, const char *xml, int g_pos);
|
||||
|
||||
static inline int cpu_index(CPUArchState *env)
|
||||
static inline int cpu_index(CPUState *cpu)
|
||||
{
|
||||
#if defined(CONFIG_USER_ONLY) && defined(CONFIG_USE_NPTL)
|
||||
return env->host_tid;
|
||||
return cpu->host_tid;
|
||||
#else
|
||||
CPUState *cpu = ENV_GET_CPU(env);
|
||||
return cpu->cpu_index + 1;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue