kernel: rename NANO_ESF
This is now called z_arch_esf_t, conforming to our naming convention. This needs to remain a typedef due to how our offset generation header mechanism works. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
c9a4bd47a7
commit
96571a8c40
44 changed files with 295 additions and 295 deletions
|
@ -150,13 +150,13 @@ struct __esf {
|
|||
u32_t instr; /* Instruction being executed when exc occurred */
|
||||
};
|
||||
|
||||
typedef struct __esf NANO_ESF;
|
||||
typedef struct __esf z_arch_esf_t;
|
||||
|
||||
FUNC_NORETURN void z_SysFatalErrorHandler(unsigned int reason,
|
||||
const NANO_ESF *esf);
|
||||
const z_arch_esf_t *esf);
|
||||
|
||||
FUNC_NORETURN void z_NanoFatalErrorHandler(unsigned int reason,
|
||||
const NANO_ESF *esf);
|
||||
const z_arch_esf_t *esf);
|
||||
|
||||
enum nios2_exception_cause {
|
||||
NIOS2_EXCEPTION_UNKNOWN = -1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue