diff options
author | Richard Henderson | 2022-04-28 10:29:54 +0200 |
---|---|---|
committer | Richard Henderson | 2022-06-28 01:05:07 +0200 |
commit | 94b14fe08f9f4f1f0e7aba639fc98e65a13e5235 (patch) | |
tree | ac4eaf27bcb2a7decb991923df1525c898512be7 /include/exec | |
parent | semihosting: Remove GDB_O_BINARY (diff) | |
download | qemu-94b14fe08f9f4f1f0e7aba639fc98e65a13e5235.tar.gz qemu-94b14fe08f9f4f1f0e7aba639fc98e65a13e5235.tar.xz qemu-94b14fe08f9f4f1f0e7aba639fc98e65a13e5235.zip |
include/exec: Move gdb open flags to gdbstub.h
There were 3 copies of these flags. Place them in the
file with gdb_do_syscall, with which they belong.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/gdbstub.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h index c35d7334b4..603e22ae80 100644 --- a/include/exec/gdbstub.h +++ b/include/exec/gdbstub.h @@ -10,6 +10,15 @@ #define GDB_WATCHPOINT_READ 3 #define GDB_WATCHPOINT_ACCESS 4 +/* For gdb file i/o remote protocol open flags. */ +#define GDB_O_RDONLY 0 +#define GDB_O_WRONLY 1 +#define GDB_O_RDWR 2 +#define GDB_O_APPEND 8 +#define GDB_O_CREAT 0x200 +#define GDB_O_TRUNC 0x400 +#define GDB_O_EXCL 0x800 + #ifdef NEED_CPU_H #include "cpu.h" |