From 56be13d5da5999a808cad2391248859d321bc7a8 Mon Sep 17 00:00:00 2001 From: Yonezawa-T2 Date: Wed, 23 Mar 2016 12:22:37 +0900 Subject: [PATCH 1/2] native: fix build on OS X --- cpu/native/tramp.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/tramp.S b/cpu/native/tramp.S index 7278e8a039..70d808daef 100644 --- a/cpu/native/tramp.S +++ b/cpu/native/tramp.S @@ -21,7 +21,7 @@ __native_sig_leave_tramp: call _swapcontext addl $8, %esp - call _enableIRQ /* TODO this call ? */ + call _irq_enable movl $0x0, __native_in_isr popal From 60c1322505cbb5f83c6e56064fde106fdf37f07c Mon Sep 17 00:00:00 2001 From: Yonezawa-T2 Date: Wed, 23 Mar 2016 12:24:55 +0900 Subject: [PATCH 2/2] ps: fix compile error on clang 7.3.0 --- sys/ps/ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ps/ps.c b/sys/ps/ps.c index 7df7f0dfe8..d20ee4f274 100644 --- a/sys/ps/ps.c +++ b/sys/ps/ps.c @@ -100,7 +100,7 @@ void ps(void) #endif sname, queued, p->priority #ifdef DEVELHELP - , p->stack_size, stacksz, p->stack_start + , p->stack_size, stacksz, (void *)p->stack_start #endif #ifdef MODULE_SCHEDSTATISTICS , runtime_ticks, switches