Constify received GDB packet

v2:
- Split work into separate patches

The received packet will not be altered in any of the processing functions.
Some it can be made "const".

Change-Id: I7bb410224cf6daa74a6c494624176ccb9ae638ac
Signed-off-by: Christian Eggers <ceggers@gmx.de>
Reviewed-on: http://openocd.zylin.com/1919
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
Christian Eggers
2014-02-14 21:48:52 +01:00
committed by Spencer Oliver
parent 537b06a810
commit 9b2577742c
8 changed files with 46 additions and 46 deletions

View File

@@ -351,7 +351,7 @@ const struct rtos_type Linux_os = {
.ps_command = linux_ps_command,
};
static int linux_thread_packet(struct connection *connection, char *packet,
static int linux_thread_packet(struct connection *connection, char const *packet,
int packet_size);
static void linux_identify_current_threads(struct target *target);
@@ -1117,7 +1117,7 @@ static int linux_task_update(struct target *target, int context)
}
int linux_gdb_thread_packet(struct target *target,
struct connection *connection, char *packet,
struct connection *connection, char const *packet,
int packet_size)
{
int retval;
@@ -1153,7 +1153,7 @@ int linux_gdb_thread_packet(struct target *target,
}
int linux_gdb_thread_update(struct target *target,
struct connection *connection, char *packet,
struct connection *connection, char const *packet,
int packet_size)
{
int found = 0;
@@ -1200,7 +1200,7 @@ int linux_gdb_thread_update(struct target *target,
}
int linux_thread_extra_info(struct target *target,
struct connection *connection, char *packet,
struct connection *connection, char const *packet,
int packet_size)
{
int64_t threadid = 0;
@@ -1247,7 +1247,7 @@ int linux_thread_extra_info(struct target *target,
}
int linux_gdb_T_packet(struct connection *connection,
struct target *target, char *packet, int packet_size)
struct target *target, char const *packet, int packet_size)
{
int64_t threadid;
struct linux_os *linux_os = (struct linux_os *)
@@ -1308,7 +1308,7 @@ int linux_gdb_T_packet(struct connection *connection,
}
int linux_gdb_h_packet(struct connection *connection,
struct target *target, char *packet, int packet_size)
struct target *target, char const *packet, int packet_size)
{
struct linux_os *linux_os = (struct linux_os *)
target->rtos->rtos_specific_params;
@@ -1376,7 +1376,7 @@ int linux_gdb_h_packet(struct connection *connection,
return ERROR_OK;
}
static int linux_thread_packet(struct connection *connection, char *packet,
static int linux_thread_packet(struct connection *connection, char const *packet,
int packet_size)
{
int retval = ERROR_OK;