From 8f8d6d7b94f66b68643140ad5002761e697e7c9d Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 29 Oct 2004 14:44:40 +0000 Subject: 2004-10-29 Kristian Høgsberg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * mini-wm.c (main): Write acknowledge token back to anaconda to indicate successful connection to the X server. * anaconda (startMiniWM): Wait for token before launching other X clients (#108777). --- mini-wm.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mini-wm.c') diff --git a/mini-wm.c b/mini-wm.c index 7a1ec03f3..e2bbe9d4b 100644 --- a/mini-wm.c +++ b/mini-wm.c @@ -16,6 +16,7 @@ #include +#include #include #include @@ -104,6 +105,10 @@ int main( int argc, mini_wm_start (); + /* Indicate back to anaconda that we now have established + * connection to the display. */ + write(1, "#", 1); + gtk_main(); return(0); -- cgit