*** empty log message ***

This commit is contained in:
Marc Alexander Lehmann 2008-06-29 22:32:51 +00:00
parent 2de837355a
commit 55fbdcf7f2
1 changed files with 3 additions and 0 deletions

3
ev.c
View File

@ -567,6 +567,9 @@ ev_sleep (ev_tstamp delay)
tv.tv_sec = (time_t)delay;
tv.tv_usec = (long)((delay - (ev_tstamp)(tv.tv_sec)) * 1e6);
/* here we rely on sys/time.h + sys/types.h + unistd.h providing select */
/* somehting nto guaranteed by newer posix versions, but guaranteed */
/* by older ones */
select (0, 0, 0, 0, &tv);
#endif
}