Revision 72cf2d4f cpu-defs.h

b/cpu-defs.h
28 28
#include <inttypes.h>
29 29
#include <signal.h>
30 30
#include "osdep.h"
31
#include "sys-queue.h"
31
#include "qemu-queue.h"
32 32
#include "targphys.h"
33 33

  
34 34
#ifndef TARGET_LONG_BITS
......
124 124
typedef struct CPUBreakpoint {
125 125
    target_ulong pc;
126 126
    int flags; /* BP_* */
127
    TAILQ_ENTRY(CPUBreakpoint) entry;
127
    QTAILQ_ENTRY(CPUBreakpoint) entry;
128 128
} CPUBreakpoint;
129 129

  
130 130
typedef struct CPUWatchpoint {
131 131
    target_ulong vaddr;
132 132
    target_ulong len_mask;
133 133
    int flags; /* BP_* */
134
    TAILQ_ENTRY(CPUWatchpoint) entry;
134
    QTAILQ_ENTRY(CPUWatchpoint) entry;
135 135
} CPUWatchpoint;
136 136

  
137 137
#define CPU_TEMP_BUF_NLONGS 128
......
169 169
                                                                        \
170 170
    /* from this point: preserved by CPU reset */                       \
171 171
    /* ice debug support */                                             \
172
    TAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints;            \
172
    QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints;            \
173 173
    int singlestep_enabled;                                             \
174 174
                                                                        \
175
    TAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints;            \
175
    QTAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints;            \
176 176
    CPUWatchpoint *watchpoint_hit;                                      \
177 177
                                                                        \
178 178
    struct GDBRegisterState *gdb_regs;                                  \

Also available in: Unified diff