flash: nand: move in include file the declaration of 'nand_devices'
[openocd.git] / src / server / gdb_server.h
blob4288ceb878e47015e63870e619160255abcd1cf0
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2005 by Dominic Rath *
5 * Dominic.Rath@gmx.de *
6 * *
7 * Copyright (C) 2007-2009 Øyvind Harboe *
8 * oyvind.harboe@zylin.com *
9 * *
10 * Copyright (C) 2008 by Spencer Oliver *
11 * spen@spen-soft.co.uk *
12 * *
13 * Copyright (C) 2011 by Broadcom Corporation *
14 * Evan Hunter - ehunter@broadcom.com *
15 ***************************************************************************/
17 #ifndef OPENOCD_SERVER_GDB_SERVER_H
18 #define OPENOCD_SERVER_GDB_SERVER_H
20 struct image;
21 struct reg;
22 #include <target/target.h>
23 #include <server/server.h>
25 #define GDB_BUFFER_SIZE 16384
27 int gdb_target_add_all(struct target *target);
28 int gdb_register_commands(struct command_context *command_context);
29 void gdb_service_free(void);
31 int gdb_put_packet(struct connection *connection, char *buffer, int len);
33 int gdb_get_actual_connections(void);
35 static inline struct target *get_target_from_connection(struct connection *connection)
37 struct gdb_service *gdb_service = connection->service->priv;
38 return gdb_service->target;
41 #define ERROR_GDB_BUFFER_TOO_SMALL (-800)
42 #define ERROR_GDB_TIMEOUT (-801)
44 #endif /* OPENOCD_SERVER_GDB_SERVER_H */