From: Alex Bennée Date: Fri, 5 Jul 2019 12:28:19 +0000 (+0100) Subject: gdbstub: add some notes to the header comment X-Git-Tag: v4.1.0-rc1~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42a0959648080874119f0430ceddcebfe3faaa28;p=thirdparty%2Fqemu.git gdbstub: add some notes to the header comment Add a link to the remote protocol spec and an SPDX tag. Signed-off-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé --- diff --git a/gdbstub.c b/gdbstub.c index 687c02e598a..8363683852f 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -1,6 +1,10 @@ /* * gdb server stub * + * This implements a subset of the remote protocol as described in: + * + * https://sourceware.org/gdb/onlinedocs/gdb/Remote-Protocol.html + * * Copyright (c) 2003-2005 Fabrice Bellard * * This library is free software; you can redistribute it and/or @@ -15,6 +19,8 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . + * + * SPDX-License-Identifier: LGPL-2.0+ */ #include "qemu/osdep.h"