From 25ad3b6f3a18addb007b9838df7347961e1a7c6e Mon Sep 17 00:00:00 2001 From: NicJA Date: Mon, 14 Jan 2013 17:22:29 +0000 Subject: [PATCH] cleanup git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@46274 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- arch/arm-raspi/kernel/kernel_intern.h | 56 ----------------------------------- 1 file changed, 56 deletions(-) diff --git a/arch/arm-raspi/kernel/kernel_intern.h b/arch/arm-raspi/kernel/kernel_intern.h index fe6efc03e1..0856394f2e 100644 --- a/arch/arm-raspi/kernel/kernel_intern.h +++ b/arch/arm-raspi/kernel/kernel_intern.h @@ -27,60 +27,8 @@ struct KernelBase { struct Node kb_Node; - void * kb_MemPool; - struct List kb_Exceptions[21]; - struct List kb_Interrupts[64]; - struct MemHeader *kb_SupervisorMem; - struct MinList kb_Modules; -// context_t *kb_FPUOwner; - struct List kb_DeadTasks; - struct Task *kb_LastDeadTask; }; -enum intr_types { - it_exception = 0xe0, - it_interrupt = 0xf0 -}; - -struct IntrNode { - struct MinNode in_Node; - void (*in_Handler)(void *, void *); - void *in_HandlerData; - void *in_HandlerData2; - uint8_t in_type; - uint8_t in_nr; -}; - -/* - * Exception handler differs a bit. It is suppost to have access to the CPU - * context... - */ -struct ExceptNode { - struct MinNode in_Node; -// int (*in_Handler)(regs_t *, void *, void *); - void *in_HandlerData; - void *in_HandlerData2; - uint8_t in_type; - uint8_t in_nr; -}; - -typedef struct { - struct MinNode m_node; - char *m_name; - char *m_str; - intptr_t m_lowest; - intptr_t m_highest; - struct MinList m_symbols; -} module_t; - -typedef struct { - struct MinNode s_node; - char *s_name; - intptr_t s_lowest; - intptr_t s_highest; -} symbol_t; - - void core_SetupMMU(void); void core_SetupIntr(void); @@ -88,8 +36,6 @@ intptr_t krnGetTagData(Tag tagValue, intptr_t defaultVal, const struct TagItem * struct TagItem *krnFindTagItem(Tag tagValue, const struct TagItem *tagList); struct TagItem *krnNextTagItem(const struct TagItem **tagListPtr); -//void core_Cause(struct ExecBase *SysBase); - struct KernelBase *getKernelBase(); #ifdef bug @@ -117,6 +63,4 @@ static inline void bug(const char *format, ...) va_end(args); } -uint32_t findNames(intptr_t addr, char **module, char **function); - #endif /*KERNEL_INTERN_H_*/ -- 2.11.4.GIT