From d651ea3d689c67944d30f9fa3002b26fdb4d96a6 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 16 Jan 2012 20:07:15 +0000 Subject: [PATCH] e: fix fps_show in comp being toggled on startup comp module has an handler on SIGUSR2 to toggle showing fps. On startup, enlightenment_init sends a SIGUSR2 to its parent so that it exists of pause() (in e_main.c:537) and finish main init. Sending SIGUSR1 instead of SIGUSR2 is more of a workaround than a fix. SVN revision: 67249 --- src/bin/e_init_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_init_main.c b/src/bin/e_init_main.c index a709de8ee..54bcf2b10 100644 --- a/src/bin/e_init_main.c +++ b/src/bin/e_init_main.c @@ -82,7 +82,7 @@ static Ecore_Ipc_Server *server = NULL; static Eina_Bool delayed_ok(void *data __UNUSED__) { - kill(getppid(), SIGUSR2); + kill(getppid(), SIGUSR1); return ECORE_CALLBACK_CANCEL; }