diff options
author | Michel Jaouen <michel.jaouen@stericsson.com> | 2011-04-19 08:43:33 +0200 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-04-28 12:22:10 +0200 |
commit | b778b36f29b74d6d571df85f984ae684672ea162 (patch) | |
tree | 774bc2d5f73daa527a6131b0fcb6351f4eb0812f /src/target/smp.h | |
parent | 36d60ee6c8d3aa1865dac2378c481954ba402910 (diff) | |
download | riscv-openocd-b778b36f29b74d6d571df85f984ae684672ea162.zip riscv-openocd-b778b36f29b74d6d571df85f984ae684672ea162.tar.gz riscv-openocd-b778b36f29b74d6d571df85f984ae684672ea162.tar.bz2 |
smp : infra for smp minimum support
Diffstat (limited to 'src/target/smp.h')
-rw-r--r-- | src/target/smp.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/target/smp.h b/src/target/smp.h new file mode 100644 index 0000000..f85c9a4 --- /dev/null +++ b/src/target/smp.h @@ -0,0 +1,25 @@ +/*************************************************************************** + * * + * Copyright (C) ST-Ericsson SA 2011 * + * Author: Michel Jaouen <michel.jaouen@stericsson.com> 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. * + ***************************************************************************/ +#include "server/server.h" +int gdb_read_smp_packet(struct connection *connection, + struct target *target, char *packet, int packet_size); +int gdb_write_smp_packet(struct connection *connection, + struct target *target, char *packet, int packet_size); + |