From 958bac1858a6f481ab3bfdb293aacbeaa969dd30 Mon Sep 17 00:00:00 2001 From: Andras Tantos Date: Thu, 25 Apr 2024 14:45:15 -0700 Subject: [PATCH] Fixed typo in comment --- simulator/sim_lib/sys_task_req.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/sim_lib/sys_task_req.cpp b/simulator/sim_lib/sys_task_req.cpp index 8f18145..52ff88b 100644 --- a/simulator/sim_lib/sys_task_req.cpp +++ b/simulator/sim_lib/sys_task_req.cpp @@ -379,7 +379,7 @@ void ParseCosExchangePacket(const ExchangePacket_c &aExchangePacket, std::ostrea aLogger << Event.str() << std::endl; aMainframe.GetEventDispatcher().Fire(Event.str()); } break; - case 014: { // Ready system task and self-syspend + case 014: { // Ready system task and self-suspend bool T = bool(GetBitsReverse(S[7],0,0) != 0); std::stringstream Event; Event << "SYS_TASK_REQ - READY_SYSTEM_TASK_AND-SELF_SUSPEND (RTSS) - T: " << (T ? "yes":"no") << " - S1: " << HexPrinter(S[1]) << " - S2: " << HexPrinter(S[2]) << " - TASK: " << OctPrinter(S[6]);