forked from auracaster/openocd
rtos: Fix constness of struct rtos_type
Change-Id: Iaa89f2ff4036c23f944ffb4f37fe0c7afaf5069b Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/6680 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
committed by
Antonio Borneo
parent
43c8aa28cb
commit
d032e7ec8c
@@ -16,22 +16,22 @@
|
||||
#include "server/gdb_server.h"
|
||||
|
||||
/* RTOSs */
|
||||
extern struct rtos_type freertos_rtos;
|
||||
extern struct rtos_type threadx_rtos;
|
||||
extern struct rtos_type ecos_rtos;
|
||||
extern struct rtos_type linux_rtos;
|
||||
extern struct rtos_type chibios_rtos;
|
||||
extern struct rtos_type chromium_ec_rtos;
|
||||
extern struct rtos_type embkernel_rtos;
|
||||
extern struct rtos_type mqx_rtos;
|
||||
extern struct rtos_type ucos_iii_rtos;
|
||||
extern struct rtos_type nuttx_rtos;
|
||||
extern struct rtos_type hwthread_rtos;
|
||||
extern struct rtos_type riot_rtos;
|
||||
extern struct rtos_type zephyr_rtos;
|
||||
extern struct rtos_type rtkernel_rtos;
|
||||
extern const struct rtos_type freertos_rtos;
|
||||
extern const struct rtos_type threadx_rtos;
|
||||
extern const struct rtos_type ecos_rtos;
|
||||
extern const struct rtos_type linux_rtos;
|
||||
extern const struct rtos_type chibios_rtos;
|
||||
extern const struct rtos_type chromium_ec_rtos;
|
||||
extern const struct rtos_type embkernel_rtos;
|
||||
extern const struct rtos_type mqx_rtos;
|
||||
extern const struct rtos_type ucos_iii_rtos;
|
||||
extern const struct rtos_type nuttx_rtos;
|
||||
extern const struct rtos_type hwthread_rtos;
|
||||
extern const struct rtos_type riot_rtos;
|
||||
extern const struct rtos_type zephyr_rtos;
|
||||
extern const struct rtos_type rtkernel_rtos;
|
||||
|
||||
static struct rtos_type *rtos_types[] = {
|
||||
static const struct rtos_type *rtos_types[] = {
|
||||
&threadx_rtos,
|
||||
&freertos_rtos,
|
||||
&ecos_rtos,
|
||||
@@ -70,7 +70,7 @@ static int rtos_target_for_threadid(struct connection *connection, int64_t threa
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
static int os_alloc(struct target *target, struct rtos_type *ostype)
|
||||
static int os_alloc(struct target *target, const struct rtos_type *ostype)
|
||||
{
|
||||
struct rtos *os = target->rtos = calloc(1, sizeof(struct rtos));
|
||||
|
||||
@@ -100,7 +100,7 @@ static void os_free(struct target *target)
|
||||
target->rtos = NULL;
|
||||
}
|
||||
|
||||
static int os_alloc_create(struct target *target, struct rtos_type *ostype)
|
||||
static int os_alloc_create(struct target *target, const struct rtos_type *ostype)
|
||||
{
|
||||
int ret = os_alloc(target, ostype);
|
||||
|
||||
@@ -683,7 +683,7 @@ int rtos_generic_stack_read(struct target *target,
|
||||
static int rtos_try_next(struct target *target)
|
||||
{
|
||||
struct rtos *os = target->rtos;
|
||||
struct rtos_type **type = rtos_types;
|
||||
const struct rtos_type **type = rtos_types;
|
||||
|
||||
if (!os)
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user