mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-19 04:48:44 +10:00
And add its own header to the rtos_xxx_stackings.c Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com> Change-Id: I084130fde7ee8645129a7cf60bb7bf59448e2f39 Reviewed-on: https://review.openocd.org/c/openocd/+/7441 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
17 lines
661 B
C
17 lines
661 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2015 by Daniel Krebs *
|
|
* Daniel Krebs - github@daniel-krebs.net *
|
|
***************************************************************************/
|
|
|
|
#ifndef OPENOCD_RTOS_RTOS_RIOT_STACKINGS_H
|
|
#define OPENOCD_RTOS_RTOS_RIOT_STACKINGS_H
|
|
|
|
#include "rtos.h"
|
|
|
|
extern const struct rtos_register_stacking rtos_riot_cortex_m0_stacking;
|
|
extern const struct rtos_register_stacking rtos_riot_cortex_m34_stacking;
|
|
|
|
#endif /* OPENOCD_RTOS_RTOS_RIOT_STACKINGS_H */
|