From 7cb38a94e4f1f64714196696f2839a9e6707dba3 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Mon, 20 Nov 2006 18:14:57 +0000 Subject: [PATCH] *** empty log message *** --- command.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/command.cc b/command.cc index e7715f8..3311a43 100644 --- a/command.cc +++ b/command.cc @@ -285,11 +285,12 @@ void Command::postMessageFromOuterSpace(Message* m) logger->log("Command", Log::DEBUG, "PMFOS called"); MessageQueue::postMessage(m); - kill(mainPid, SIGURG); - - // FIXME: Marten - if this actually works on the MVP then you will need - // to come up with the Windows equivalent here. +#ifndef WIN32 + kill(mainPid, SIGURG); +#else + ((RemoteWin*)Remote::getInstance())->Signal(); +#endif } void Command::processMessage(Message* m) -- 2.39.2