On Mon, May 19, 2008 at 11:04 AM, Lorenzo Fiorini
<[EMAIL PROTECTED]> wrote:

> I've just migrated a customer site from Fedora Core 5 to Centos 5.1.
> ...
> Could it be sth related to inkey loop?

Just an update:

I've replaced:

   {
      static const struct timespec nanosecs = { 0, 1000000 };
      nanosleep( &nanosecs, NULL );
   }

with:

   {
      struct timeval tv;
      tv.tv_sec = 0;
      tv.tv_usec = 1000;
      select( 0, NULL, NULL, NULL, &tv );
   }

in source/rtl/idle.c. No more reports so far.

Could it be?

best regards,
Lorenzo
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to