X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_mtime.h;h=60063eabf6c388c6026863444a5f97eb0a33e71b;hb=ed8db5db22eec520b1a4110d98201124088c06ea;hp=0a75dacdf964f4c3a19c47f709ff2ec6eaa6abec;hpb=331625d9dcae5c28c02a8f78a9bf0598784a61f2;p=vlc diff --git a/include/vlc_mtime.h b/include/vlc_mtime.h index 0a75dacdf9..60063eabf6 100644 --- a/include/vlc_mtime.h +++ b/include/vlc_mtime.h @@ -68,9 +68,15 @@ VLC_EXPORT( void, mwait, ( mtime_t date ) ); VLC_EXPORT( void, msleep, ( mtime_t delay ) ); VLC_EXPORT( char *, secstotimestr, ( char *psz_buffer, int secs ) ); -#if defined (__GNUC__) && defined (__linux__) -# define VLC_HARD_MIN_SLEEP 1000 /* Linux has 100, 250, 300 or 1000Hz */ -# define VLC_SOFT_MIN_SLEEP 9000000 +# define VLC_HARD_MIN_SLEEP 10000 /* 10 milliseconds = 1 tick at 100Hz */ + +#if defined (__GNUC__) \ + && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) +/* Linux has 100, 250, 300 or 1000Hz + * + * HZ=100 by default on FreeBSD, but some architectures use a 1000Hz timer + */ +# define VLC_SOFT_MIN_SLEEP 9000000 /* 9 seconds */ static __attribute__((unused))