Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2014-01-01 Thread Michael Vara
Same problem here with Debian jessie/testing 32bit. Is there any permanent
workaround other than what Christopher suggested with the /dev/null linking
?

thanks


On Fri, Dec 27, 2013 at 1:30 PM, Robert David robert.david.pub...@gmail.com
 wrote:

 Hi all,

 it seams that this only wrongly initialized static variable from the
 code abowe.

 it should be:
 _e_main_cb_idle_after(void *data __UNUSED__)
 {
   static int first_idle = 1;

   edje_freeze();

   #ifdef E18_RELEASE_BUILD
 if (first_idle)
 {
   TS(SLEEP);
   first_idle = 0;
   e_precache_end = EINA_TRUE;
 }


 Robert.


 On Mon, 23 Dec 2013 18:07:38 +0100
 ADA ada...@gmail.com wrote:

 
  Hi,
 
   I've looked into the code and the messages are generated by e_main.c,
  function _e_main_cb_idle_after (from line 1875 to 1900). It looks
  like this:
 
 
  static Eina_Bool
  _e_main_cb_idle_after(void *data __UNUSED__)
  {
 static int first_idle;
 
 edje_freeze();
 
  #ifdef E18_RELEASE_BUILD
 first_idle = 1;
 if (first_idle)
   {
  TS(SLEEP);
  first_idle = 0;
  e_precache_end = EINA_TRUE;
   }
  #else
 if (first_idle++  60)
   {
  TS(SLEEP);
  if (!first_idle)
e_precache_end = EINA_TRUE;
   }
  #endif
 
 return ECORE_CALLBACK_RENEW;
  }
 
   E18_RELEASE_BUILD is defined, since it's from the release version, so
  the upper part is active. As far as I can see, this means, that every
  time the _e_main_cb_idle_after function is called, a SLEEP line is
  logged. Probably that was not the original intention, the first_idle
  = 1; line is causing trouble IMHO.
 
   Someone, who really knows, what's going on in the background should
  check this. :-)
 
 
   Regards,
 ADA
 
  On 23/12/13 16:23, Christian Bochu wrote:
   Hi all,
  
   Mon, 23 Dec 2013 14:21:30 +0100, Andreas Kurth use...@akurth.de a
   écrit :
  
   Hello,
  
   I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
   messages being logged to .xsession-errors very frequently:
  
   [...]
   ESTART: 1630,45112 [0,01165] - SLEEP
   ESTART: 1630,45860 [0,00748] - SLEEP
   ESTART: 1630,46173 [0,00313] - SLEEP
   [...]
  
   0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
   eating up my disk space?
  
   Cheers, Andreas.
  
  
   Same here. I confirm that these messages were not there with
   e18-rc2. On my system, most of the time intervals are around
   0.01666s. I run Debian Jessie (64 bits) on a Dell Vostro.
  
   I also noticed that the messages stop when I switch to a tty
   (CTRL+ALT+F1) and resume as soon as I switch back to E (ALT+F7).
  
   I actually realized that while investigating the exact same unlock
   issue that Marc has mentioned in another thread. Again, I did not
   have it with e18-rc2.
  
   I wonder if these two issues could somehow be related?
  
   Thanks for the awesome work!
  
   Christian
  
  
 --
   Rapidly troubleshoot problems before they affect your business.
   Most IT organizations don't have a clear picture of how application
   performance affects their revenue. With AppDynamics, you get 100%
   visibility into your Java,.NET,  PHP application. Start your
   15-day FREE TRIAL of AppDynamics Pro!
  
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
   ___ enlightenment-users
   mailing list enlightenment-users@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-users
  
 
 
 --
  Rapidly troubleshoot problems before they affect your business. Most
  IT organizations don't have a clear picture of how application
  performance affects their revenue. With AppDynamics, you get 100%
  visibility into your Java,.NET,  PHP application. Start your 15-day
  FREE TRIAL of AppDynamics Pro!
 
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
  ___ enlightenment-users
  mailing list enlightenment-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-users



 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2014-01-01 Thread Fan Cris
i think is fixed , update your e


On Wed, Jan 1, 2014 at 8:22 PM, Michael Vara mvar@gmail.com wrote:

 Same problem here with Debian jessie/testing 32bit. Is there any permanent
 workaround other than what Christopher suggested with the /dev/null linking
 ?

 thanks


 On Fri, Dec 27, 2013 at 1:30 PM, Robert David 
 robert.david.pub...@gmail.com
  wrote:

  Hi all,
 
  it seams that this only wrongly initialized static variable from the
  code abowe.
 
  it should be:
  _e_main_cb_idle_after(void *data __UNUSED__)
  {
static int first_idle = 1;
 
edje_freeze();
 
#ifdef E18_RELEASE_BUILD
  if (first_idle)
  {
TS(SLEEP);
first_idle = 0;
e_precache_end = EINA_TRUE;
  }
 
 
  Robert.
 
 
  On Mon, 23 Dec 2013 18:07:38 +0100
  ADA ada...@gmail.com wrote:
 
  
   Hi,
  
I've looked into the code and the messages are generated by e_main.c,
   function _e_main_cb_idle_after (from line 1875 to 1900). It looks
   like this:
  
  
   static Eina_Bool
   _e_main_cb_idle_after(void *data __UNUSED__)
   {
  static int first_idle;
  
  edje_freeze();
  
   #ifdef E18_RELEASE_BUILD
  first_idle = 1;
  if (first_idle)
{
   TS(SLEEP);
   first_idle = 0;
   e_precache_end = EINA_TRUE;
}
   #else
  if (first_idle++  60)
{
   TS(SLEEP);
   if (!first_idle)
 e_precache_end = EINA_TRUE;
}
   #endif
  
  return ECORE_CALLBACK_RENEW;
   }
  
E18_RELEASE_BUILD is defined, since it's from the release version, so
   the upper part is active. As far as I can see, this means, that every
   time the _e_main_cb_idle_after function is called, a SLEEP line is
   logged. Probably that was not the original intention, the first_idle
   = 1; line is causing trouble IMHO.
  
Someone, who really knows, what's going on in the background should
   check this. :-)
  
  
Regards,
  ADA
  
   On 23/12/13 16:23, Christian Bochu wrote:
Hi all,
   
Mon, 23 Dec 2013 14:21:30 +0100, Andreas Kurth use...@akurth.de a
écrit :
   
Hello,
   
I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
messages being logged to .xsession-errors very frequently:
   
[...]
ESTART: 1630,45112 [0,01165] - SLEEP
ESTART: 1630,45860 [0,00748] - SLEEP
ESTART: 1630,46173 [0,00313] - SLEEP
[...]
   
0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
eating up my disk space?
   
Cheers, Andreas.
   
   
Same here. I confirm that these messages were not there with
e18-rc2. On my system, most of the time intervals are around
0.01666s. I run Debian Jessie (64 bits) on a Dell Vostro.
   
I also noticed that the messages stop when I switch to a tty
(CTRL+ALT+F1) and resume as soon as I switch back to E (ALT+F7).
   
I actually realized that while investigating the exact same unlock
issue that Marc has mentioned in another thread. Again, I did not
have it with e18-rc2.
   
I wonder if these two issues could somehow be related?
   
Thanks for the awesome work!
   
Christian
   
   
 
 --
Rapidly troubleshoot problems before they affect your business.
Most IT organizations don't have a clear picture of how application
performance affects their revenue. With AppDynamics, you get 100%
visibility into your Java,.NET,  PHP application. Start your
15-day FREE TRIAL of AppDynamics Pro!
   
 
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___ enlightenment-users
mailing list enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users
   
  
  
 
 --
   Rapidly troubleshoot problems before they affect your business. Most
   IT organizations don't have a clear picture of how application
   performance affects their revenue. With AppDynamics, you get 100%
   visibility into your Java,.NET,  PHP application. Start your 15-day
   FREE TRIAL of AppDynamics Pro!
  
 
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
   ___ enlightenment-users
   mailing list enlightenment-users@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 
 
 
 
 --
  Rapidly troubleshoot problems before they affect your business. Most IT
  organizations don't have a clear picture of how application performance
  affects their revenue. With AppDynamics, you get 100% visibility into
 your
  Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
  Pro!
 
 

Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2014-01-01 Thread Michael Vara
now that's embarassing.. Indeed in 0.18.2 the issue is fixed
thanks!


On Wed, Jan 1, 2014 at 8:32 PM, Fan Cris fancr...@gmail.com wrote:

 i think is fixed , update your e


 On Wed, Jan 1, 2014 at 8:22 PM, Michael Vara mvar@gmail.com wrote:

  Same problem here with Debian jessie/testing 32bit. Is there any
 permanent
  workaround other than what Christopher suggested with the /dev/null
 linking
  ?
 
  thanks
 
 
  On Fri, Dec 27, 2013 at 1:30 PM, Robert David 
  robert.david.pub...@gmail.com
   wrote:
 
   Hi all,
  
   it seams that this only wrongly initialized static variable from the
   code abowe.
  
   it should be:
   _e_main_cb_idle_after(void *data __UNUSED__)
   {
 static int first_idle = 1;
  
 edje_freeze();
  
 #ifdef E18_RELEASE_BUILD
   if (first_idle)
   {
 TS(SLEEP);
 first_idle = 0;
 e_precache_end = EINA_TRUE;
   }
  
  
   Robert.
  
  
   On Mon, 23 Dec 2013 18:07:38 +0100
   ADA ada...@gmail.com wrote:
  
   
Hi,
   
 I've looked into the code and the messages are generated by
 e_main.c,
function _e_main_cb_idle_after (from line 1875 to 1900). It looks
like this:
   
   
static Eina_Bool
_e_main_cb_idle_after(void *data __UNUSED__)
{
   static int first_idle;
   
   edje_freeze();
   
#ifdef E18_RELEASE_BUILD
   first_idle = 1;
   if (first_idle)
 {
TS(SLEEP);
first_idle = 0;
e_precache_end = EINA_TRUE;
 }
#else
   if (first_idle++  60)
 {
TS(SLEEP);
if (!first_idle)
  e_precache_end = EINA_TRUE;
 }
#endif
   
   return ECORE_CALLBACK_RENEW;
}
   
 E18_RELEASE_BUILD is defined, since it's from the release version,
 so
the upper part is active. As far as I can see, this means, that every
time the _e_main_cb_idle_after function is called, a SLEEP line is
logged. Probably that was not the original intention, the first_idle
= 1; line is causing trouble IMHO.
   
 Someone, who really knows, what's going on in the background should
check this. :-)
   
   
 Regards,
   ADA
   
On 23/12/13 16:23, Christian Bochu wrote:
 Hi all,

 Mon, 23 Dec 2013 14:21:30 +0100, Andreas Kurth use...@akurth.de
 a
 écrit :

 Hello,

 I compiled enlightenment 0.18.0 today and now I see tons of
 SLEEP
 messages being logged to .xsession-errors very frequently:

 [...]
 ESTART: 1630,45112 [0,01165] - SLEEP
 ESTART: 1630,45860 [0,00748] - SLEEP
 ESTART: 1630,46173 [0,00313] - SLEEP
 [...]

 0.18.0-rc1 did not behave like that, IIRC. How can I prevent e
 from
 eating up my disk space?

 Cheers, Andreas.


 Same here. I confirm that these messages were not there with
 e18-rc2. On my system, most of the time intervals are around
 0.01666s. I run Debian Jessie (64 bits) on a Dell Vostro.

 I also noticed that the messages stop when I switch to a tty
 (CTRL+ALT+F1) and resume as soon as I switch back to E (ALT+F7).

 I actually realized that while investigating the exact same unlock
 issue that Marc has mentioned in another thread. Again, I did not
 have it with e18-rc2.

 I wonder if these two issues could somehow be related?

 Thanks for the awesome work!

 Christian


  
 
 --
 Rapidly troubleshoot problems before they affect your business.
 Most IT organizations don't have a clear picture of how application
 performance affects their revenue. With AppDynamics, you get 100%
 visibility into your Java,.NET,  PHP application. Start your
 15-day FREE TRIAL of AppDynamics Pro!

  
 
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___ enlightenment-users
 mailing list enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users

   
   
  
 
 --
Rapidly troubleshoot problems before they affect your business. Most
IT organizations don't have a clear picture of how application
performance affects their revenue. With AppDynamics, you get 100%
visibility into your Java,.NET,  PHP application. Start your 15-day
FREE TRIAL of AppDynamics Pro!
   
  
 
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___ enlightenment-users
mailing list enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users
  
  
  
  
 
 --
   Rapidly troubleshoot problems before they affect 

Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-24 Thread Andreas Kurth
Stefano wrote:
 On Mon, 23 Dec 2013 14:21:30 +0100
 Andreas Kurth use...@akurth.de wrote:
 
  Hello,
  
  I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
  messages being logged to .xsession-errors very frequently:
  
  [...]
  ESTART: 1630,45112 [0,01165] - SLEEP
  ESTART: 1630,45860 [0,00748] - SLEEP
  ESTART: 1630,46173 [0,00313] - SLEEP
  [...]
  
  0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
  eating up my disk space?
  
  Cheers, Andreas.
 
 I have built e18 as well by I don't see any SLEEP line logged in
 my .xsession-errors
 
 I have configured e18 with the --with-profile=release
 
 You may try to do the same.
 
 Best,
 
 -- 
 Stefano

IMHO passing --with-profile=release doesn't make any sense in e18
build, since the only known target constants are LOWRES_PDA,
MEDIUMRES_PDA, HIRES_PDA, SLOW_PC, MEDIUM_PC, FAST_PC according to
configure help.

E18_RELEASE_BUILD is set in configure.ac, so I guess you built from a
non release branch. Building from master fixed the problem for me,
too.

Cheers, Andreas.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Andreas Kurth
Hello,

I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
messages being logged to .xsession-errors very frequently:

[...]
ESTART: 1630,45112 [0,01165] - SLEEP
ESTART: 1630,45860 [0,00748] - SLEEP
ESTART: 1630,46173 [0,00313] - SLEEP
[...]

0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
eating up my disk space?

Cheers, Andreas.

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Christian Bochu
Hi all,

Mon, 23 Dec 2013 14:21:30 +0100, Andreas Kurth use...@akurth.de a
écrit :

 Hello,
 
 I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
 messages being logged to .xsession-errors very frequently:
 
 [...]
 ESTART: 1630,45112 [0,01165] - SLEEP
 ESTART: 1630,45860 [0,00748] - SLEEP
 ESTART: 1630,46173 [0,00313] - SLEEP
 [...]
 
 0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
 eating up my disk space?
 
 Cheers, Andreas.
 

Same here. I confirm that these messages were not there with e18-rc2.
On my system, most of the time intervals are around 0.01666s. I run
Debian Jessie (64 bits) on a Dell Vostro.

I also noticed that the messages stop when I switch to a tty
(CTRL+ALT+F1) and resume as soon as I switch back to E (ALT+F7).

I actually realized that while investigating the exact same unlock
issue that Marc has mentioned in another thread. Again, I did not have
it with e18-rc2.

I wonder if these two issues could somehow be related?

Thanks for the awesome work!

Christian

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread ADA

Hi,

 I've looked into the code and the messages are generated by e_main.c,
function _e_main_cb_idle_after (from line 1875 to 1900). It looks like this:


static Eina_Bool
_e_main_cb_idle_after(void *data __UNUSED__)
{
   static int first_idle;

   edje_freeze();

#ifdef E18_RELEASE_BUILD
   first_idle = 1;
   if (first_idle)
 {
TS(SLEEP);
first_idle = 0;
e_precache_end = EINA_TRUE;
 }
#else
   if (first_idle++  60)
 {
TS(SLEEP);
if (!first_idle)
  e_precache_end = EINA_TRUE;
 }
#endif

   return ECORE_CALLBACK_RENEW;
}

 E18_RELEASE_BUILD is defined, since it's from the release version, so
the upper part is active. As far as I can see, this means, that every
time the _e_main_cb_idle_after function is called, a SLEEP line is
logged. Probably that was not the original intention, the first_idle =
1; line is causing trouble IMHO.

 Someone, who really knows, what's going on in the background should
check this. :-)


 Regards,
   ADA

On 23/12/13 16:23, Christian Bochu wrote:
 Hi all,
 
 Mon, 23 Dec 2013 14:21:30 +0100, Andreas Kurth use...@akurth.de a
 écrit :
 
 Hello,

 I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
 messages being logged to .xsession-errors very frequently:

 [...]
 ESTART: 1630,45112 [0,01165] - SLEEP
 ESTART: 1630,45860 [0,00748] - SLEEP
 ESTART: 1630,46173 [0,00313] - SLEEP
 [...]

 0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
 eating up my disk space?

 Cheers, Andreas.

 
 Same here. I confirm that these messages were not there with e18-rc2.
 On my system, most of the time intervals are around 0.01666s. I run
 Debian Jessie (64 bits) on a Dell Vostro.
 
 I also noticed that the messages stop when I switch to a tty
 (CTRL+ALT+F1) and resume as soon as I switch back to E (ALT+F7).
 
 I actually realized that while investigating the exact same unlock
 issue that Marc has mentioned in another thread. Again, I did not have
 it with e18-rc2.
 
 I wonder if these two issues could somehow be related?
 
 Thanks for the awesome work!
 
 Christian
 
 --
 Rapidly troubleshoot problems before they affect your business. Most IT 
 organizations don't have a clear picture of how application performance 
 affects their revenue. With AppDynamics, you get 100% visibility into your 
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Stefano
On Mon, 23 Dec 2013 14:21:30 +0100
Andreas Kurth use...@akurth.de wrote:

 Hello,
 
 I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
 messages being logged to .xsession-errors very frequently:
 
 [...]
 ESTART: 1630,45112 [0,01165] - SLEEP
 ESTART: 1630,45860 [0,00748] - SLEEP
 ESTART: 1630,46173 [0,00313] - SLEEP
 [...]
 
 0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
 eating up my disk space?
 
 Cheers, Andreas.

I have built e18 as well by I don't see any SLEEP line logged in
my .xsession-errors

I have configured e18 with the --with-profile=release

You may try to do the same.

Best,

-- 
Stefano

Fortune of the day: Afternoon very favorable for romance.  Try a single person
for a change.
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread rob
On 23/12/13 18:50, Stefano wrote:
 On Mon, 23 Dec 2013 14:21:30 +0100
 Andreas Kurth use...@akurth.de wrote:

 Hello,

 I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
 messages being logged to .xsession-errors very frequently:

 [...]
 ESTART: 1630,45112 [0,01165] - SLEEP
 ESTART: 1630,45860 [0,00748] - SLEEP
 ESTART: 1630,46173 [0,00313] - SLEEP
 [...]

 0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
 eating up my disk space?

 Cheers, Andreas.

 I have built e18 as well by I don't see any SLEEP line logged in
 my .xsession-errors

 I have configured e18 with the --with-profile=release

 You may try to do the same.

 Best,




So it's a release that doesn't know it's a release:)

rob




--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Wido
I have compiled it with *release* flag, but I do have all those 'sleep' in
the logs


2013/12/23 rob r...@rektau.ukfsn.org

 On 23/12/13 18:50, Stefano wrote:
  On Mon, 23 Dec 2013 14:21:30 +0100
  Andreas Kurth use...@akurth.de wrote:
 
  Hello,
 
  I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
  messages being logged to .xsession-errors very frequently:
 
  [...]
  ESTART: 1630,45112 [0,01165] - SLEEP
  ESTART: 1630,45860 [0,00748] - SLEEP
  ESTART: 1630,46173 [0,00313] - SLEEP
  [...]
 
  0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
  eating up my disk space?
 
  Cheers, Andreas.
 
  I have built e18 as well by I don't see any SLEEP line logged in
  my .xsession-errors
 
  I have configured e18 with the --with-profile=release
 
  You may try to do the same.
 
  Best,
 
 


 So it's a release that doesn't know it's a release:)

 rob





 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!
 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users




-- 
Wido
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Wido
And I think it's really distur


2013/12/24 Wido wido...@gmail.com

 I have compiled it with *release* flag, but I do have all those 'sleep' in
 the logs


 2013/12/23 rob r...@rektau.ukfsn.org

 On 23/12/13 18:50, Stefano wrote:
  On Mon, 23 Dec 2013 14:21:30 +0100
  Andreas Kurth use...@akurth.de wrote:
 
  Hello,
 
  I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
  messages being logged to .xsession-errors very frequently:
 
  [...]
  ESTART: 1630,45112 [0,01165] - SLEEP
  ESTART: 1630,45860 [0,00748] - SLEEP
  ESTART: 1630,46173 [0,00313] - SLEEP
  [...]
 
  0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
  eating up my disk space?
 
  Cheers, Andreas.
 
  I have built e18 as well by I don't see any SLEEP line logged in
  my .xsession-errors
 
  I have configured e18 with the --with-profile=release
 
  You may try to do the same.
 
  Best,
 
 


 So it's a release that doesn't know it's a release:)

 rob





 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics
 Pro!

 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users




 --
 Wido




-- 
Wido
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Wido
and I think is really disturbing the fact that it writes 66k of logs in 30
seconds:

~/$  .xsession-errors  sleep 30  ls -lh .xsession-errors
-rw--- 1 wido wido 66K dic 24 00:42 .xsession-errors
~/$ wc -l .xsession-errors
6077 .xsession-errors


I also think it's eating my CPU, as I'm seeing about 25% usage while E is
idle


2013/12/24 Wido wido...@gmail.com

 And I think it's really distur


 2013/12/24 Wido wido...@gmail.com

 I have compiled it with *release* flag, but I do have all those 'sleep'
 in the logs


 2013/12/23 rob r...@rektau.ukfsn.org

 On 23/12/13 18:50, Stefano wrote:
  On Mon, 23 Dec 2013 14:21:30 +0100
  Andreas Kurth use...@akurth.de wrote:
 
  Hello,
 
  I compiled enlightenment 0.18.0 today and now I see tons of SLEEP
  messages being logged to .xsession-errors very frequently:
 
  [...]
  ESTART: 1630,45112 [0,01165] - SLEEP
  ESTART: 1630,45860 [0,00748] - SLEEP
  ESTART: 1630,46173 [0,00313] - SLEEP
  [...]
 
  0.18.0-rc1 did not behave like that, IIRC. How can I prevent e from
  eating up my disk space?
 
  Cheers, Andreas.
 
  I have built e18 as well by I don't see any SLEEP line logged in
  my .xsession-errors
 
  I have configured e18 with the --with-profile=release
 
  You may try to do the same.
 
  Best,
 
 


 So it's a release that doesn't know it's a release:)

 rob





 --
 Rapidly troubleshoot problems before they affect your business. Most IT
 organizations don't have a clear picture of how application performance
 affects their revenue. With AppDynamics, you get 100% visibility into
 your
 Java,.NET,  PHP application. Start your 15-day FREE TRIAL of
 AppDynamics Pro!

 http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users




 --
 Wido




 --
 Wido




-- 
Wido
--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] E18 ESTART - SLEEP messages in .xsession-errors

2013-12-23 Thread Christopher Barry
On Tue, 24 Dec 2013 01:43:49 -0200
Wido wido...@gmail.com wrote:

 and I think is really disturbing the fact that it writes 66k of logs
 in 30 seconds:
 
 ~/$  .xsession-errors  sleep 30  ls -lh .xsession-errors
 -rw--- 1 wido wido 66K dic 24 00:42 .xsession-errors
 ~/$ wc -l .xsession-errors
 6077 .xsession-errors
 
 
 I also think it's eating my CPU, as I'm seeing about 25% usage while
 E is idle
 

ln -sf /dev/null ~/.xsession-errors

:)

see if your cpu quiets down

-- 
Regards,
Christopher Barry

Random geeky fortune:
You know what they say -- the sweetest word in the English language is
revenge. -- Peter Beard

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users