This is an automated email from Gerrit. Michel JAOUEN ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/341
-- gerrit commit ba5f408cfac34881c0a57e18b4fcedf3da24e885 Author: Michel JAOUEN <[email protected]> Date: Tue Jan 3 15:34:14 2012 +0100 rtos : remove unused parameter Change-Id: I98c9f28a0085bd4713b694181ab544777091eac6 Signed-off-by: Michel JAOUEN <[email protected]> diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c index ac7f89c..8a5db11 100644 --- a/src/rtos/rtos.c +++ b/src/rtos/rtos.c @@ -424,7 +424,7 @@ int gdb_thread_packet(struct connection *connection, char *packet, int packet_si return GDB_THREAD_PACKET_NOT_CONSUMED; } -int rtos_get_gdb_reg_list(struct connection *connection, struct reg **reg_list[], int *reg_list_size) +int rtos_get_gdb_reg_list(struct connection *connection) { struct target *target = get_target_from_connection(connection); diff --git a/src/rtos/rtos.h b/src/rtos/rtos.h index 269ae8d..4f190e9 100644 --- a/src/rtos/rtos.h +++ b/src/rtos/rtos.h @@ -101,7 +101,7 @@ int rtos_create(Jim_GetOptInfo *goi, struct target * target); int rtos_generic_stack_read( struct target * target, const struct rtos_register_stacking* stacking, int64_t stack_ptr, char ** hex_reg_list ); int rtos_try_next( struct target * target ); int gdb_thread_packet(struct connection *connection, char *packet, int packet_size); -int rtos_get_gdb_reg_list(struct connection *connection, struct reg **reg_list[], int *reg_list_size); +int rtos_get_gdb_reg_list(struct connection *connection); int rtos_update_threads( struct target *target ); #endif // RTOS_H diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index 537513a..bbf5f58 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -1039,8 +1039,8 @@ static int gdb_get_registers_packet(struct connection *connection, LOG_DEBUG("-"); #endif - if ( ( target->rtos != NULL ) && - ( ERROR_FAIL != rtos_get_gdb_reg_list( connection, ®_list, ®_list_size) ) ) + if ((target->rtos != NULL) && + (ERROR_FAIL != rtos_get_gdb_reg_list(connection))) { return ERROR_OK; } -- ------------------------------------------------------------------------------ Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to virtual desktops. With this all-in-one solution, easily deploy virtual desktops for less than the cost of PCs and save 60% on VDI infrastructure costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
