X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftarget%2Fsmp.h;h=20835a0522a0d3b7c10ac9771f2ad37a4f502981;hb=be2e5c6c35f77fecb4df2a19cec05cceac500ca9;hp=b8f0ea5274ad2330c0a78d01b7f2320a5bba0692;hpb=8d7ddde5f104dde8949dbefcad85f08b7313e126;p=fw%2Fopenocd diff --git a/src/target/smp.h b/src/target/smp.h index b8f0ea527..20835a052 100644 --- a/src/target/smp.h +++ b/src/target/smp.h @@ -1,25 +1,30 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + /*************************************************************************** * * * Copyright (C) ST-Ericsson SA 2011 * * Author: Michel Jaouen for ST-Ericsson. * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + +#ifndef OPENOCD_TARGET_SMP_H +#define OPENOCD_TARGET_SMP_H + +#include #include "server/server.h" + +#define foreach_smp_target(pos, head) \ + list_for_each_entry(pos, head, lh) + +#define foreach_smp_target_direction(forward, pos, head) \ + list_for_each_entry_direction(forward, pos, head, lh) + +extern const struct command_registration smp_command_handlers[]; + +/* DEPRECATED */ int gdb_read_smp_packet(struct connection *connection, - char *packet, int packet_size); + char const *packet, int packet_size); +/* DEPRECATED */ int gdb_write_smp_packet(struct connection *connection, - char *packet, int packet_size); + char const *packet, int packet_size); +#endif /* OPENOCD_TARGET_SMP_H */