rtos: Add ChibiOS/RT support
[fw/openocd] / src / rtos / rtos.c
index ed559c391b2f86b65e82913b72713dae8fd1bff2..8e2b568dc7d773631aa63d37293e9a6f8708fb96 100644 (file)
@@ -34,12 +34,14 @@ extern struct rtos_type FreeRTOS_rtos;
 extern struct rtos_type ThreadX_rtos;
 extern struct rtos_type eCos_rtos;
 extern struct rtos_type Linux_os;
+extern struct rtos_type ChibiOS_rtos;
 
 static struct rtos_type *rtos_types[] = {
        &ThreadX_rtos,
        &FreeRTOS_rtos,
        &eCos_rtos,
        &Linux_os,
+       &ChibiOS_rtos,
        NULL
 };