After the changing from: #elif defined(HB_OS_UNIX) { static const struct timespec nanosecs = { 0, 1000000 }; nanosleep( &nanosecs, NULL ); }
to: #elif defined(HB_OS_UNIX) { struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 1000; select( 0, NULL, NULL, NULL, &tv ); } the "black screen" problem under Centos 5.1 went away. Is it the right fix? Should I commit it? best regards, Lorenzo _______________________________________________ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour