* src/mac.c (sleep) [__MRC__]: Place loop around WaitNextEvent
to check time elapsed instead of use WaitNextEvent call as a delay.
* src/mac.c (stat): Don't fail for aliases.
(sys_open) [__MRC__]: Set file creator and type for newly-created
files.
-
+ (sleep) [__MRC__]: Place loop around WaitNextEvent to check time
+ elapsed instead of use WaitNextEvent call as a delay.
+
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
* src/macterm.c (init_font_name_table): Add an additional entry to
unsigned int
sleep (unsigned int seconds)
{
+ unsigned long time_up;
EventRecord e;
- WaitNextEvent (0, &e, seconds * 60UL, NULL); /* Accept no event; just wait. by T.I.*/
+ time_up = TickCount () + seconds * 60;
+ while (TickCount () < time_up)
+ {
+ /* Accept no event; just wait. by T.I. */
+ WaitNextEvent (0, &e, 30, NULL);
+ }
return (0);
}