qemu.h (978efd6aac65bc1e025472859eb738839425318b) qemu.h (e6e5906b6e0a81718066ca43aef57515026c6624)
1#ifndef QEMU_H
2#define QEMU_H
3
4#include "thunk.h"
5
6#include <signal.h>
7#include <string.h>
8#include "syscall_defs.h"

--- 60 unchanged lines hidden (view full) ---

69#endif
70#ifdef TARGET_I386
71 target_ulong target_v86;
72 struct vm86_saved_state vm86_saved_regs;
73 struct target_vm86plus_struct vm86plus;
74 uint32_t v86flags;
75 uint32_t v86mask;
76#endif
1#ifndef QEMU_H
2#define QEMU_H
3
4#include "thunk.h"
5
6#include <signal.h>
7#include <string.h>
8#include "syscall_defs.h"

--- 60 unchanged lines hidden (view full) ---

69#endif
70#ifdef TARGET_I386
71 target_ulong target_v86;
72 struct vm86_saved_state vm86_saved_regs;
73 struct target_vm86plus_struct vm86plus;
74 uint32_t v86flags;
75 uint32_t v86mask;
76#endif
77#ifdef TARGET_M68K
78 int sim_syscalls;
79#endif
77 int used; /* non zero if used */
78 struct image_info *info;
79 uint8_t stack[0];
80} __attribute__((aligned(16))) TaskState;
81
82extern TaskState *first_task_state;
83extern const char *qemu_uname_release;
84

--- 224 unchanged lines hidden ---
80 int used; /* non zero if used */
81 struct image_info *info;
82 uint8_t stack[0];
83} __attribute__((aligned(16))) TaskState;
84
85extern TaskState *first_task_state;
86extern const char *qemu_uname_release;
87

--- 224 unchanged lines hidden ---