Skip to content

Commit

Permalink
DO NOT MERGE: CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
fzi-haxel committed Feb 5, 2024
1 parent ae3a63f commit 644581f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpu/native/irq_cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ volatile int _native_in_syscall;

static sigset_t _native_sig_set, _native_sig_set_dint;

char __isr_stack[SIGSTKSZ];
char __isr_stack[2 * SIGSTKSZ];
ucontext_t native_isr_context;
ucontext_t *_native_cur_ctx, *_native_isr_ctx;

Expand All @@ -58,7 +58,7 @@ volatile int _native_sigpend;
int _sig_pipefd[2];

static _native_callback_t native_irq_handlers[255];
char sigalt_stk[SIGSTKSZ];
char sigalt_stk[2 * SIGSTKSZ];

void *thread_isr_stack_pointer(void)
{
Expand Down

0 comments on commit 644581f

Please sign in to comment.