mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
linux-user: Add "safe" parameter to do_guest_openat()
gdbstub cannot meaningfully handle QEMU_ERESTARTSYS, and it doesn't need to. Add a parameter to do_guest_openat() that makes it use openat() instead of safe_openat(), so that it becomes usable from gdbstub. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230621203627.1808446-3-iii@linux.ibm.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230630180423.558337-33-alex.bennee@linaro.org>
This commit is contained in:
parent
a4dab0a0d3
commit
35be898e2f
2 changed files with 14 additions and 6 deletions
|
@ -166,7 +166,7 @@ typedef struct TaskState {
|
|||
|
||||
abi_long do_brk(abi_ulong new_brk);
|
||||
int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
|
||||
int flags, mode_t mode);
|
||||
int flags, mode_t mode, bool safe);
|
||||
ssize_t do_guest_readlink(const char *pathname, char *buf, size_t bufsiz);
|
||||
|
||||
/* user access */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue