Hi...
While exploring the actual sources (base 1.5.0) I found a
sleep(1)
in -[NSLock lockBeforeDate:] Line 168
In order to be compatible with windows (where it is differently defined)
shouldn't it better read
like this?
#ifdef HAVE_USLEEP
usleep ((int)(1*1000000));
#else
#if defined(__MINGW__)
Sleep (1*1000);
#else
sleep ((int)1);
#endif
#endif
What do you think?
Greetings,
Roland
_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep