]> git.sesse.net Git - vlc/commitdiff
* What was i smoking when i did this change?
authorDerk-Jan Hartman <hartman@videolan.org>
Sun, 16 Oct 2005 14:50:17 +0000 (14:50 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Sun, 16 Oct 2005 14:50:17 +0000 (14:50 +0000)
src/misc/threads.c

index db3cceca01d84aba1d86fc91da78423b33675db6..ca0fdac13b5fc28536a8110a5c97ff7468f46ca9 100644 (file)
@@ -571,18 +571,15 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
     i_ret = pthread_create( &p_this->thread_id, NULL, func, p_data );
 
-#if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
-    i_ret = config_GetInt( p_this, "rt-priority" );
+#ifndef SYS_DARWIN
+    if ( config_GetInt( p_this, "rt-priority" ) )
 #endif
-    if( i_ret )
     {
         int i_error, i_policy;
         struct sched_param param;
 
         memset( &param, 0, sizeof(struct sched_param) );
-#if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
         i_priority += config_GetInt( p_this, "rt-offset" );
-#endif
         if ( i_priority <= 0 )
         {
             param.sched_priority = (-1) * i_priority;
@@ -601,10 +598,12 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
             i_priority = 0;
         }
     }
+#ifndef SYS_DARWIN
     else
     {
         i_priority = 0;
     }
+#endif
 
 #elif defined( HAVE_CTHREADS_H )
     p_this->thread_id = cthread_fork( (cthread_fn_t)func, (any_t)p_data );
@@ -650,8 +649,6 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
 int __vlc_thread_set_priority( vlc_object_t *p_this, char * psz_file,
                                int i_line, int i_priority )
 {
-    int i_ret;
-
 #if defined( PTH_INIT_IN_PTH_H ) || defined( ST_INIT_IN_ST_H )
 #elif defined( WIN32 ) || defined( UNDER_CE )
     if ( !SetThreadPriority(GetCurrentThread(), i_priority) )
@@ -661,9 +658,8 @@ int __vlc_thread_set_priority( vlc_object_t *p_this, char * psz_file,
     }
 
 #elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
-#if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
-    i_ret = config_GetInt( p_this, "rt-priority" );
-    if( i_ret )
+#ifndef SYS_DARWIN
+    if ( config_GetInt( p_this, "rt-priority" ) )
 #endif
     {
         int i_error, i_policy;