aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/rtos.c
diff options
context:
space:
mode:
authorMichel JAOUEN <michel.jaouen@stericsson.com>2012-01-11 10:59:29 +0100
committerØyvind Harboe <oyvindharboe@gmail.com>2012-01-15 22:17:16 +0000
commit0a4b27ec4bcb303547af68490f007d65a00bff02 (patch)
tree8713c9a150c7b765a1eb2b01a0669cf120ebcbb9 /src/rtos/rtos.c
parent433ca26f1abe59f39844eeac0dafef6cb7fdd520 (diff)
downloadriscv-openocd-0a4b27ec4bcb303547af68490f007d65a00bff02.zip
riscv-openocd-0a4b27ec4bcb303547af68490f007d65a00bff02.tar.gz
riscv-openocd-0a4b27ec4bcb303547af68490f007d65a00bff02.tar.bz2
rtos : linux awareness
Change-Id: I41294ccaa4a3cd253919c8b1b558205903bcb695 Signed-off-by: Michel JAOUEN <michel.jaouen@stericsson.com> Reviewed-on: http://openocd.zylin.com/348 Tested-by: jenkins Reviewed-by: Heythem Bouhaja <heythem.bouhaja-nonst@stericsson.com> Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/rtos/rtos.c')
-rw-r--r--src/rtos/rtos.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index a0bbc82..3deeb68 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -37,12 +37,14 @@ static void hex_to_str( char* dst, char * hex_src );
extern struct rtos_type FreeRTOS_rtos;
extern struct rtos_type ThreadX_rtos;
extern struct rtos_type eCos_rtos;
+extern struct rtos_type Linux_os;
static struct rtos_type *rtos_types[] =
{
&ThreadX_rtos,
&FreeRTOS_rtos,
&eCos_rtos,
+ &Linux_os,
NULL
};