guestfd.c (ad4c7f529a279685da84297773b4ec8080153c2d) guestfd.c (c566080cd37fe328077a3c49d7fd248ce2a06bfe)
1/*
2 * Hosted file support for semihosting syscalls.
3 *
4 * Copyright (c) 2005, 2007 CodeSourcery.
5 * Copyright (c) 2019 Linaro
6 * Copyright © 2020 by Keith Packard <keithp@keithp.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#include "qemu/osdep.h"
1/*
2 * Hosted file support for semihosting syscalls.
3 *
4 * Copyright (c) 2005, 2007 CodeSourcery.
5 * Copyright (c) 2019 Linaro
6 * Copyright © 2020 by Keith Packard <keithp@keithp.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#include "qemu/osdep.h"
12#include "exec/gdbstub.h"
12#include "gdbstub/syscalls.h"
13#include "semihosting/semihost.h"
14#include "semihosting/guestfd.h"
15#ifdef CONFIG_USER_ONLY
16#include "qemu.h"
17#else
18#include "semihosting/softmmu-uaccess.h"
19#include CONFIG_DEVICES
20#endif

--- 140 unchanged lines hidden ---
13#include "semihosting/semihost.h"
14#include "semihosting/guestfd.h"
15#ifdef CONFIG_USER_ONLY
16#include "qemu.h"
17#else
18#include "semihosting/softmmu-uaccess.h"
19#include CONFIG_DEVICES
20#endif

--- 140 unchanged lines hidden ---