From: Matthias Kruk Date: Fri, 6 Sep 2019 17:50:45 +0000 (+0900) Subject: Make symbol _int_restore global so that it can be used for task switching X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=d4e34006c2590ab6c776c37cd0b53b13d06dc23b;p=corax Make symbol _int_restore global so that it can be used for task switching --- diff --git a/kernel/arch/entry.S b/kernel/arch/entry.S index fe7aade..77705f1 100644 --- a/kernel/arch/entry.S +++ b/kernel/arch/entry.S @@ -76,6 +76,7 @@ .global _sys_entryCC .global _int_entry_common +.global _int_restore .extern _exc_handle .extern _int_handle @@ -344,7 +345,7 @@ _int_entry_common: 1: call _int_handle - _int_restore: +_int_restore: popl %eax movw %ax, %ds movw %ax, %es