From 7ec3d19818f02da16ffdac528c48b2dba0bddf7a Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Tue, 20 Jul 2021 00:59:42 +0000 Subject: [PATCH] commented out debug messages from System.moo --- moo/kernel/System.moo | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/moo/kernel/System.moo b/moo/kernel/System.moo index 48b8ab8..82094e0 100644 --- a/moo/kernel/System.moo +++ b/moo/kernel/System.moo @@ -168,33 +168,33 @@ class System(Apex) System logNl: "Interrupt detected - signal no - " & signo asString. -System logNl: "WWWWWWWWWWWWWWWWWWWWWWWWW ". +//System logNl: "WWWWWWWWWWWWWWWWWWWWWWWWW ". // user-defined signal handler is not allowed for 16rFF if (signo == 16rFF) { goto done }. -System logNl: "OHHHHHHHHHHHHHH ". +//System logNl: "OHHHHHHHHHHHHHH ". ifnot (self.shr isEmpty) { -System logNl: "About to execute handler for the signal detected - " & signo asString. +//System logNl: "About to execute handler for the signal detected - " & signo asString. self.shr do: [ :handler | handler value: signo ]. } else { -System logNl: "Jumping to done detected - signal no - " & signo asString. +//System logNl: "Jumping to done detected - signal no - " & signo asString. if (signo == 2) { goto done }. }. }. -System logNl: "Waiting for signal on os_intr_sem...". +//System logNl: "Waiting for signal on os_intr_sem...". os_intr_sem wait. }. done: -System logNl: "Jumped to done detected - signal no - " & signo asString. +//System logNl: "Jumped to done detected - signal no - " & signo asString. nil. ] ensure: [ | pid proc oldps | -System logNl: "Aborting signal handler......". +//System logNl: "Aborting signal handler......". // stop subscribing to signals. os_intr_sem signal. os_intr_sem unsignal.