gdbstub.c (5885bcef3d760e84d17eb4113e85f2aea0bd0582) gdbstub.c (b14d0649628cbe88ac0ef35fcf58cd1fc22735b8)
1/*
2 * gdb server stub
3 *
4 * This implements a subset of the remote protocol as described in:
5 *
6 * https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html
7 *
8 * Copyright (c) 2003-2005 Fabrice Bellard

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

15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 *
1/*
2 * gdb server stub
3 *
4 * This implements a subset of the remote protocol as described in:
5 *
6 * https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html
7 *
8 * Copyright (c) 2003-2005 Fabrice Bellard

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

15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 *
23 * SPDX-License-Identifier: LGPL-2.0+
23 * SPDX-License-Identifier: LGPL-2.0-or-later
24 */
25
26#include "qemu/osdep.h"
27#include "qemu/ctype.h"
28#include "qemu/cutils.h"
29#include "qemu/module.h"
30#include "qemu/error-report.h"
31#include "trace.h"

--- 2464 unchanged lines hidden ---
24 */
25
26#include "qemu/osdep.h"
27#include "qemu/ctype.h"
28#include "qemu/cutils.h"
29#include "qemu/module.h"
30#include "qemu/error-report.h"
31#include "trace.h"

--- 2464 unchanged lines hidden ---