syscalls.c (f2cb4026fccfe073f84a4b440e41d3ed0c3134f6) | syscalls.c (b14d0649628cbe88ac0ef35fcf58cd1fc22735b8) |
---|---|
1/* 2 * GDB Syscall Handling 3 * 4 * GDB can execute syscalls on the guests behalf, currently used by 5 * the various semihosting extensions. 6 * 7 * Copyright (c) 2003-2005 Fabrice Bellard 8 * Copyright (c) 2023 Linaro Ltd 9 * | 1/* 2 * GDB Syscall Handling 3 * 4 * GDB can execute syscalls on the guests behalf, currently used by 5 * the various semihosting extensions. 6 * 7 * Copyright (c) 2003-2005 Fabrice Bellard 8 * Copyright (c) 2023 Linaro Ltd 9 * |
10 * SPDX-License-Identifier: LGPL-2.0+ | 10 * SPDX-License-Identifier: LGPL-2.0-or-later |
11 */ 12 13#include "qemu/osdep.h" 14#include "qemu/error-report.h" 15#include "semihosting/semihost.h" 16#include "sysemu/runstate.h" 17#include "gdbstub/user.h" 18#include "gdbstub/syscalls.h" --- 188 unchanged lines hidden --- | 11 */ 12 13#include "qemu/osdep.h" 14#include "qemu/error-report.h" 15#include "semihosting/semihost.h" 16#include "sysemu/runstate.h" 17#include "gdbstub/user.h" 18#include "gdbstub/syscalls.h" --- 188 unchanged lines hidden --- |