Win32: use IsProcessorFeaturePresent() to detect available instructions
[vlc/solaris.git] / src / misc / threads.c
blobacc2d4f2ef8460ea565f7b9f723f3443bb7e3d15
1 /*****************************************************************************
2 * threads.c : threads implementation for the VideoLAN client
3 *****************************************************************************
4 * Copyright (C) 1999-2008 the VideoLAN team
5 * $Id$
7 * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
8 * Samuel Hocevar <sam@zoy.org>
9 * Gildas Bazin <gbazin@netcourrier.com>
10 * Clément Sténac
11 * Rémi Denis-Courmont
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
34 #include "libvlc.h"
35 #include <assert.h>
36 #include <errno.h>
37 #ifdef HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
41 #if defined( LIBVLC_USE_PTHREAD )
42 # include <sched.h>
43 #endif
45 struct vlc_thread_boot
47 void * (*entry) (vlc_object_t *);
48 vlc_object_t *object;
51 static void *thread_entry (void *data)
53 vlc_object_t *obj = ((struct vlc_thread_boot *)data)->object;
54 void *(*func) (vlc_object_t *) = ((struct vlc_thread_boot *)data)->entry;
56 free (data);
57 msg_Dbg (obj, "thread started");
58 func (obj);
59 msg_Dbg (obj, "thread ended");
61 return NULL;
64 #undef vlc_thread_create
65 /*****************************************************************************
66 * vlc_thread_create: create a thread
67 *****************************************************************************
68 * Note that i_priority is only taken into account on platforms supporting
69 * userland real-time priority threads.
70 *****************************************************************************/
71 int vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
72 const char *psz_name, void *(*func) ( vlc_object_t * ),
73 int i_priority )
75 int i_ret;
76 vlc_object_internals_t *p_priv = vlc_internals( p_this );
78 struct vlc_thread_boot *boot = malloc (sizeof (*boot));
79 if (boot == NULL)
80 return errno;
81 boot->entry = func;
82 boot->object = p_this;
84 /* Make sure we don't re-create a thread if the object has already one */
85 assert( !p_priv->b_thread );
87 p_priv->b_thread = true;
88 i_ret = vlc_clone( &p_priv->thread_id, thread_entry, boot, i_priority );
89 if( i_ret == 0 )
90 msg_Dbg( p_this, "thread (%s) created at priority %d (%s:%d)",
91 psz_name, i_priority, psz_file, i_line );
92 else
94 p_priv->b_thread = false;
95 errno = i_ret;
96 msg_Err( p_this, "%s thread could not be created at %s:%d (%m)",
97 psz_name, psz_file, i_line );
100 return i_ret;
103 /*****************************************************************************
104 * vlc_thread_set_priority: set the priority of the current thread when we
105 * couldn't set it in vlc_thread_create (for instance for the main thread)
106 *****************************************************************************/
107 int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
108 int i_line, int i_priority )
110 vlc_object_internals_t *p_priv = vlc_internals( p_this );
112 if( !p_priv->b_thread )
114 msg_Err( p_this, "couldn't set priority of non-existent thread" );
115 return ESRCH;
118 #if defined( LIBVLC_USE_PTHREAD )
119 # ifndef __APPLE__
120 if( config_GetInt( p_this, "rt-priority" ) > 0 )
121 # endif
123 int i_error, i_policy;
124 struct sched_param param;
126 memset( &param, 0, sizeof(struct sched_param) );
127 if( config_GetType( p_this, "rt-offset" ) )
128 i_priority += config_GetInt( p_this, "rt-offset" );
129 if( i_priority <= 0 )
131 param.sched_priority = (-1) * i_priority;
132 i_policy = SCHED_OTHER;
134 else
136 param.sched_priority = i_priority;
137 i_policy = SCHED_RR;
139 if( (i_error = pthread_setschedparam( p_priv->thread_id,
140 i_policy, &param )) )
142 errno = i_error;
143 msg_Warn( p_this, "couldn't set thread priority (%s:%d): %m",
144 psz_file, i_line );
145 i_priority = 0;
149 #elif defined( WIN32 ) || defined( UNDER_CE )
150 VLC_UNUSED( psz_file); VLC_UNUSED( i_line );
152 #ifndef UNDER_CE
153 if( !SetThreadPriority(p_priv->thread_id, i_priority) )
154 #else
155 if( !SetThreadPriority(p_priv->thread_id->handle, i_priority) )
156 #endif
158 msg_Warn( p_this, "couldn't set a faster priority" );
159 return 1;
162 #endif
164 return 0;
167 /*****************************************************************************
168 * vlc_thread_join: wait until a thread exits, inner version
169 *****************************************************************************/
170 void __vlc_thread_join( vlc_object_t *p_this )
172 vlc_object_internals_t *p_priv = vlc_internals( p_this );
174 #if defined( WIN32 ) && !defined( UNDER_CE )
175 HANDLE hThread;
176 FILETIME create_ft, exit_ft, kernel_ft, user_ft;
177 int64_t real_time, kernel_time, user_time;
179 if( ! DuplicateHandle(GetCurrentProcess(),
180 p_priv->thread_id,
181 GetCurrentProcess(),
182 &hThread,
184 FALSE,
185 DUPLICATE_SAME_ACCESS) )
187 p_priv->b_thread = false;
188 return; /* We have a problem! */
190 #endif
192 vlc_join( p_priv->thread_id, NULL );
194 #if defined( WIN32 ) && !defined( UNDER_CE )
195 /* FIXME: this could work on WinCE too... except that it seems always to
196 * return 0 for exit_ft and kernel_ft */
197 if( GetThreadTimes( hThread, &create_ft, &exit_ft, &kernel_ft, &user_ft ) )
199 real_time =
200 ((((int64_t)exit_ft.dwHighDateTime)<<32)| exit_ft.dwLowDateTime) -
201 ((((int64_t)create_ft.dwHighDateTime)<<32)| create_ft.dwLowDateTime);
202 real_time /= 10;
204 kernel_time =
205 ((((int64_t)kernel_ft.dwHighDateTime)<<32)|
206 kernel_ft.dwLowDateTime) / 10;
208 user_time =
209 ((((int64_t)user_ft.dwHighDateTime)<<32)|
210 user_ft.dwLowDateTime) / 10;
212 msg_Dbg( p_this, "thread times: "
213 "real %"PRId64"m%fs, kernel %"PRId64"m%fs, user %"PRId64"m%fs",
214 real_time/60/1000000,
215 (double)((real_time%(60*1000000))/1000000.0),
216 kernel_time/60/1000000,
217 (double)((kernel_time%(60*1000000))/1000000.0),
218 user_time/60/1000000,
219 (double)((user_time%(60*1000000))/1000000.0) );
221 CloseHandle( hThread );
222 #endif
224 p_priv->b_thread = false;
227 void vlc_thread_cancel (vlc_object_t *obj)
229 vlc_object_internals_t *priv = vlc_internals (obj);
231 if (priv->b_thread)
232 vlc_cancel (priv->thread_id);