]> git.sesse.net Git - vlc/blobdiff - include/vlc_mtime.h
Rework delay checking, use it for net_Accept, add deadline checks
[vlc] / include / vlc_mtime.h
index 08262a75f8b7739989d1518759e6d97901614d6f..e51c639813068731612df4baf83110a10481a686 100644 (file)
@@ -80,31 +80,49 @@ static
 __attribute__((unused))
 __attribute__((noinline))
 __attribute__((error("sorry, cannot sleep for such short a time")))
-void impossible_msleep( mtime_t delay )
+mtime_t impossible_delay( mtime_t delay )
 {
     (void) delay;
-    msleep( VLC_HARD_MIN_SLEEP );
+    return VLC_HARD_MIN_SLEEP;
 }
 
 static
 __attribute__((unused))
 __attribute__((noinline))
-__attribute__((warning("use proper event handling instead")))
-void bad_msleep( mtime_t delay )
+__attribute__((warning("use proper event handling instead of short delay")))
+mtime_t harmful_delay( mtime_t delay )
 {
-    msleep( delay );
+    return delay;
 }
 
-# define msleep( d ) \
+# define check_delay( d ) \
     ((__builtin_constant_p(d < VLC_HARD_MIN_SLEEP) \
    && (d < VLC_HARD_MIN_SLEEP)) \
-       ? impossible_msleep(d) \
+       ? impossible_delay(d) \
        : ((__builtin_constant_p(d < VLC_SOFT_MIN_SLEEP) \
        && (d < VLC_SOFT_MIN_SLEEP)) \
-           ? bad_msleep(d) \
-           : msleep(d)))
+           ? harmful_delay(d) \
+           : d))
+
+static
+__attribute__((unused))
+__attribute__((noinline))
+__attribute__((error("deadlines can not be constant")))
+mtime_t impossible_deadline( mtime_t deadline )
+{
+    return deadline;
+}
+
+# define check_deadline( d ) \
+    (__builtin_constant_p(d) ? impossible_deadline(d) : d)
+#else
+# define check_delay(d) (d)
+# define check_deadline(d) (d)
 #endif
 
+#define msleep(d) msleep(check_delay(d))
+#define mwait(d) mwait(check_deadline(d))
+
 /*****************************************************************************
  * date_t: date incrementation without long-term rounding errors
  *****************************************************************************/