arm: remove old GDB_INFO support
That module is not used anymore: it was introduced pre-Zephyr to add some kind of awareness when debugging ARM Cortex-M3 code with GDB but was never really used by anyone. It has bitrotted, and with the recent move of the tTCS and tNANO data structures to common _kernel and k_thread, it does not even compile anymore. Jira: ZEP-1284, ZEP-951 Change-Id: Ic9afed00f4229324fe5d2aa97dc6f1c935953244 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
1f2a5791bc
commit
5ad2905532
15 changed files with 4 additions and 376 deletions
|
@ -58,17 +58,6 @@ static uint32_t clock_accumulated_count;
|
|||
|
||||
#include <board.h>
|
||||
|
||||
/*
|
||||
* When GDB_INFO is enabled, the handler installed in the vector table
|
||||
* (__systick), can be found in systick_gdb.s. In this case, the handler
|
||||
* in this file becomes _Systick() and will be called by __systick.
|
||||
*/
|
||||
#ifdef CONFIG_GDB_INFO
|
||||
#define _TIMER_INT_HANDLER _real_timer_int_handler
|
||||
#else
|
||||
#define _TIMER_INT_HANDLER _timer_int_handler
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_TICKLESS_IDLE
|
||||
#define TIMER_MODE_PERIODIC 0 /* normal running mode */
|
||||
#define TIMER_MODE_ONE_SHOT 1 /* emulated, since sysTick has 1 mode */
|
||||
|
@ -212,12 +201,11 @@ static ALWAYS_INLINE void sysTickReloadSet(
|
|||
* This routine handles the system clock tick interrupt. A TICK_EVENT event
|
||||
* is pushed onto the microkernel stack.
|
||||
*
|
||||
* The symbol for this routine is either _timer_int_handler (for normal
|
||||
* system operation) or _real_timer_int_handler (when GDB_INFO is enabled).
|
||||
* The symbol for this routine is either _timer_int_handler.
|
||||
*
|
||||
* @return N/A
|
||||
*/
|
||||
void _TIMER_INT_HANDLER(void *unused)
|
||||
void _timer_int_handler(void *unused)
|
||||
{
|
||||
ARG_UNUSED(unused);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue