Commit 8e2f8915 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

threads: remove leading underscores

parent 094cdf14
...@@ -185,8 +185,8 @@ VLC_EXPORT( void, vlc_threadvar_delete, (vlc_threadvar_t *) ); ...@@ -185,8 +185,8 @@ VLC_EXPORT( void, vlc_threadvar_delete, (vlc_threadvar_t *) );
VLC_EXPORT( int, vlc_threadvar_set, (vlc_threadvar_t, void *) ); VLC_EXPORT( int, vlc_threadvar_set, (vlc_threadvar_t, void *) );
VLC_EXPORT( void *, vlc_threadvar_get, (vlc_threadvar_t) ); VLC_EXPORT( void *, vlc_threadvar_get, (vlc_threadvar_t) );
VLC_EXPORT( int, vlc_thread_create, ( vlc_object_t *, const char *, int, const char *, void * ( * ) ( vlc_object_t * ), int ) LIBVLC_USED ); VLC_EXPORT( int, vlc_thread_create, ( vlc_object_t *, const char *, int, const char *, void * ( * ) ( vlc_object_t * ), int ) LIBVLC_USED );
VLC_EXPORT( int, __vlc_thread_set_priority, ( vlc_object_t *, const char *, int, int ) ); VLC_EXPORT( int, vlc_thread_set_priority, ( vlc_object_t *, const char *, int, int ) );
VLC_EXPORT( void, __vlc_thread_join, ( vlc_object_t * ) ); VLC_EXPORT( void, vlc_thread_join, ( vlc_object_t * ) );
VLC_EXPORT( int, vlc_clone, (vlc_thread_t *, void * (*) (void *), void *, int) LIBVLC_USED ); VLC_EXPORT( int, vlc_clone, (vlc_thread_t *, void * (*) (void *), void *, int) LIBVLC_USED );
VLC_EXPORT( void, vlc_cancel, (vlc_thread_t) ); VLC_EXPORT( void, vlc_cancel, (vlc_thread_t) );
...@@ -394,13 +394,13 @@ static inline void barrier (void) ...@@ -394,13 +394,13 @@ static inline void barrier (void)
* vlc_thread_set_priority: set the priority of the calling thread * vlc_thread_set_priority: set the priority of the calling thread
*****************************************************************************/ *****************************************************************************/
#define vlc_thread_set_priority( P_THIS, PRIORITY ) \ #define vlc_thread_set_priority( P_THIS, PRIORITY ) \
__vlc_thread_set_priority( VLC_OBJECT(P_THIS), __FILE__, __LINE__, PRIORITY ) vlc_thread_set_priority( VLC_OBJECT(P_THIS), __FILE__, __LINE__, PRIORITY )
/***************************************************************************** /*****************************************************************************
* vlc_thread_join: wait until a thread exits * vlc_thread_join: wait until a thread exits
*****************************************************************************/ *****************************************************************************/
#define vlc_thread_join( P_THIS ) \ #define vlc_thread_join( P_THIS ) \
__vlc_thread_join( VLC_OBJECT(P_THIS) ) vlc_thread_join( VLC_OBJECT(P_THIS) )
#ifdef __cplusplus #ifdef __cplusplus
/** /**
......
...@@ -567,8 +567,8 @@ vlc_sd_Start ...@@ -567,8 +567,8 @@ vlc_sd_Start
vlc_sd_Stop vlc_sd_Stop
vlc_testcancel vlc_testcancel
vlc_thread_create vlc_thread_create
__vlc_thread_join vlc_thread_join
__vlc_thread_set_priority vlc_thread_set_priority
vlc_threadvar_create vlc_threadvar_create
vlc_threadvar_delete vlc_threadvar_delete
vlc_threadvar_get vlc_threadvar_get
......
...@@ -100,11 +100,12 @@ int vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line, ...@@ -100,11 +100,12 @@ int vlc_thread_create( vlc_object_t *p_this, const char * psz_file, int i_line,
return i_ret; return i_ret;
} }
#undef vlc_thread_set_priority
/***************************************************************************** /*****************************************************************************
* vlc_thread_set_priority: set the priority of the current thread when we * vlc_thread_set_priority: set the priority of the current thread when we
* couldn't set it in vlc_thread_create (for instance for the main thread) * couldn't set it in vlc_thread_create (for instance for the main thread)
*****************************************************************************/ *****************************************************************************/
int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file, int vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
int i_line, int i_priority ) int i_line, int i_priority )
{ {
vlc_object_internals_t *p_priv = vlc_internals( p_this ); vlc_object_internals_t *p_priv = vlc_internals( p_this );
...@@ -164,10 +165,11 @@ int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file, ...@@ -164,10 +165,11 @@ int __vlc_thread_set_priority( vlc_object_t *p_this, const char * psz_file,
return 0; return 0;
} }
#undef vlc_thread_join
/***************************************************************************** /*****************************************************************************
* vlc_thread_join: wait until a thread exits, inner version * vlc_thread_join: wait until a thread exits, inner version
*****************************************************************************/ *****************************************************************************/
void __vlc_thread_join( vlc_object_t *p_this ) void vlc_thread_join( vlc_object_t *p_this )
{ {
vlc_object_internals_t *p_priv = vlc_internals( p_this ); vlc_object_internals_t *p_priv = vlc_internals( p_this );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment