X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fserver%2Fgdb_server.h;h=fb4cdbab6becf713d84aab1218a02d4c8f221f65;hp=943d9d97a98d97489e866128330adf1d4c1b9d6a;hb=8b994145b849c40b0a195c3fb332b9770b2f9097;hpb=f370d70670bd5e30befe6fbfbc8d472e760f032b diff --git a/src/server/gdb_server.h b/src/server/gdb_server.h index 943d9d97a9..fb4cdbab6b 100644 --- a/src/server/gdb_server.h +++ b/src/server/gdb_server.h @@ -2,9 +2,12 @@ * Copyright (C) 2005 by Dominic Rath * * Dominic.Rath@gmx.de * * * - * Copyright (C) 2007,2008 Øyvind Harboe * + * Copyright (C) 2007,2008 Øyvind Harboe * * oyvind.harboe@zylin.com * * * + * Copyright (C) 2008 by Spencer Oliver * + * spen@spen-soft.co.uk * + * * * 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 * @@ -24,8 +27,8 @@ #define GDB_SERVER_H #include "target.h" -#include "server.h" -#include "image.h" + +struct image_s; #define GDB_BUFFER_SIZE 16384 @@ -36,9 +39,10 @@ typedef struct gdb_connection_s int buf_cnt; int ctrl_c; enum target_state frontend_state; - image_t *vflash_image; + struct image_s *vflash_image; int closed; int busy; + int noack_mode; } gdb_connection_t; typedef struct gdb_service_s