*** empty log message ***
authorChris Tallon <chris@vomp.tv>
Mon, 20 Nov 2006 18:14:57 +0000 (18:14 +0000)
committerChris Tallon <chris@vomp.tv>
Mon, 20 Nov 2006 18:14:57 +0000 (18:14 +0000)
command.cc

index e7715f87a95450b78c028daa957ee83f21aca606..3311a43333794c84d7736e4beefc2fe345abae30 100644 (file)
@@ -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)