]> git.sesse.net Git - vlc/commitdiff
Remove unused sleep constants
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Jan 2010 19:47:22 +0000 (21:47 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 30 Jan 2010 19:51:24 +0000 (21:51 +0200)
include/vlc_config.h

index 1e5a1aa6c0fdaaae973272909d463b1995e90638..7063b19ea54e52978087ebecf7eb2abc46fcf575 100644 (file)
 
 #define CLOCK_FREQ INT64_C(1000000)
 
-/* When creating or destroying threads in blocking mode, delay to poll thread
- * status */
-#define THREAD_SLEEP                    ((mtime_t)(0.010*CLOCK_FREQ))
-
 /*****************************************************************************
  * Interface configuration
  *****************************************************************************/
@@ -70,9 +66,6 @@
 /* Used in ErrorThread */
 #define INPUT_IDLE_SLEEP                ((mtime_t)(0.100*CLOCK_FREQ))
 
-/* Time to wait in case of read error */
-#define INPUT_ERROR_SLEEP               ((mtime_t)(0.10*CLOCK_FREQ))
-
 /* Number of read() calls needed until we check the file size through
  * fstat() */
 #define INPUT_FSTAT_NB_READS            16