diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2019-07-05 13:28:19 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2019-07-10 10:54:41 +0100 |
| commit | 42a0959648080874119f0430ceddcebfe3faaa28 (patch) | |
| tree | ffef6a6b521be6ba57fd5fa57396e3b0883e5039 /gdbstub.c | |
| parent | ef860047b61ea4a5ad407496ab8cda6370a2d7d8 (diff) | |
| download | focaccia-qemu-42a0959648080874119f0430ceddcebfe3faaa28.tar.gz focaccia-qemu-42a0959648080874119f0430ceddcebfe3faaa28.zip | |
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 <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | gdbstub.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdbstub.c b/gdbstub.c index 687c02e598..8363683852 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 <http://www.gnu.org/licenses/>. + * + * SPDX-License-Identifier: LGPL-2.0+ */ #include "qemu/osdep.h" |