From b3f0333e8a68b1ccf836cf3e21a3a9572bff57d4 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 30 Mar 2018 22:46:46 +0100 Subject: [PATCH] z80: fix stray switchout This gets us close to where need to be. All that is broken by all this changing around now is signal handling on pre-emption --- Kernel/lowlevel-z80.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/lowlevel-z80.s b/Kernel/lowlevel-z80.s index 8d74a84f..a583a555 100644 --- a/Kernel/lowlevel-z80.s +++ b/Kernel/lowlevel-z80.s @@ -32,7 +32,7 @@ .globl _platform_interrupt .globl platform_interrupt_all .globl _need_resched - .globl _switchout + .globl _platform_switchout ; exported symbols .globl _chksigs @@ -554,7 +554,7 @@ intret2:call map_kernel ; ld hl, (U_DATA__U_PTAB) ld (hl), #P_READY - call _switchout + call _platform_switchout ; ; We are no longer in an interrupt or a syscall ; -- 2.34.1