From 625648f02ce49d50fe844c776567a4413b7a95a5 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 8 Dec 2018 01:18:43 +0000 Subject: [PATCH] multicomp09: use new makeproc --- Kernel/platform-multicomp09/tricks.s | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-multicomp09/tricks.s b/Kernel/platform-multicomp09/tricks.s index c9a8aa85..1c0a561f 100644 --- a/Kernel/platform-multicomp09/tricks.s +++ b/Kernel/platform-multicomp09/tricks.s @@ -4,9 +4,10 @@ .module tricks ;; imported - .globl _newproc + .globl _makeproc .globl _chksigs .globl _getproc + .globl _udata .globl _platform_monitor .globl _krn_mmu_map .globl _usr_mmu_map @@ -165,8 +166,11 @@ _dofork: ;; _switchin will be expecting from our copy of the stack. puls x + ldx #_udata + pshs x ldx fork_proc_ptr ; get forked process - jsr _newproc ; and set it up + jsr _makeproc ; and set it up + puls x ;; any calls to map process will now map the childs memory -- 2.34.1