Commit 647d6d85 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Initialize messages stacks inside the message bank

parent 7f2c9f9c
...@@ -95,21 +95,9 @@ void msg_Flush (libvlc_int_t *); ...@@ -95,21 +95,9 @@ void msg_Flush (libvlc_int_t *);
void msg_Destroy (libvlc_int_t *); void msg_Destroy (libvlc_int_t *);
/** Internal message stack context */ /** Internal message stack context */
typedef struct
{
int i_code;
char * psz_message;
} msg_context_t;
void msg_StackSet ( int, const char*, ... ); void msg_StackSet ( int, const char*, ... );
void msg_StackAdd ( const char*, ... ); void msg_StackAdd ( const char*, ... );
const char* msg_StackMsg ( void ); const char* msg_StackMsg ( void );
/** The global thread var for msg stack context
* We store this as a static global variable so we don't need a vlc_object_t
* everywhere.
* This key is created in vlc_threads_init and is therefore ready to use at
* the very beginning of the universe */
extern vlc_threadvar_t msg_context_global_key;
void msg_StackDestroy (void *); void msg_StackDestroy (void *);
/* /*
......
...@@ -55,6 +55,15 @@ ...@@ -55,6 +55,15 @@
#include <vlc_charset.h> #include <vlc_charset.h>
#include "../libvlc.h" #include "../libvlc.h"
typedef struct
{
int i_code;
char * psz_message;
} msg_context_t;
static vlc_threadvar_t msg_context;
static uintptr_t banks = 0;
/***************************************************************************** /*****************************************************************************
* Local macros * Local macros
*****************************************************************************/ *****************************************************************************/
...@@ -100,6 +109,11 @@ void msg_Create (libvlc_int_t *p_libvlc) ...@@ -100,6 +109,11 @@ void msg_Create (libvlc_int_t *p_libvlc)
CREATE_ALWAYS, 0, NULL ); CREATE_ALWAYS, 0, NULL );
SetFilePointer( QUEUE.logfile, 0, NULL, FILE_END ); SetFilePointer( QUEUE.logfile, 0, NULL, FILE_END );
#endif #endif
vlc_mutex_t *lock = var_AcquireMutex( "msg-stack" );
if( banks++ == 0 )
vlc_threadvar_create( &msg_context, NULL );
vlc_mutex_unlock( lock );
} }
/** /**
...@@ -129,6 +143,11 @@ void msg_Destroy (libvlc_int_t *p_libvlc) ...@@ -129,6 +143,11 @@ void msg_Destroy (libvlc_int_t *p_libvlc)
FlushMsg( &QUEUE ); FlushMsg( &QUEUE );
vlc_mutex_t *lock = var_AcquireMutex( "msg-stack" );
if( --banks == 0 )
vlc_threadvar_delete( &msg_context );
vlc_mutex_unlock( lock );
#ifdef UNDER_CE #ifdef UNDER_CE
CloseHandle( QUEUE.logfile ); CloseHandle( QUEUE.logfile );
#endif #endif
...@@ -608,12 +627,12 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item ) ...@@ -608,12 +627,12 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
static msg_context_t* GetContext(void) static msg_context_t* GetContext(void)
{ {
msg_context_t *p_ctx = vlc_threadvar_get( &msg_context_global_key ); msg_context_t *p_ctx = vlc_threadvar_get( &msg_context );
if( p_ctx == NULL ) if( p_ctx == NULL )
{ {
MALLOC_NULL( p_ctx, msg_context_t ); MALLOC_NULL( p_ctx, msg_context_t );
p_ctx->psz_message = NULL; p_ctx->psz_message = NULL;
vlc_threadvar_set( &msg_context_global_key, p_ctx ); vlc_threadvar_set( &msg_context, p_ctx );
} }
return p_ctx; return p_ctx;
} }
......
...@@ -66,8 +66,6 @@ libvlc_global_data_t *vlc_global( void ) ...@@ -66,8 +66,6 @@ libvlc_global_data_t *vlc_global( void )
return p_root; return p_root;
} }
vlc_threadvar_t msg_context_global_key;
#if defined(LIBVLC_USE_PTHREAD) #if defined(LIBVLC_USE_PTHREAD)
static inline unsigned long vlc_threadid (void) static inline unsigned long vlc_threadid (void)
{ {
...@@ -178,7 +176,6 @@ int vlc_threads_init( void ) ...@@ -178,7 +176,6 @@ int vlc_threads_init( void )
} }
/* We should be safe now. Do all the initialization stuff we want. */ /* We should be safe now. Do all the initialization stuff we want. */
vlc_threadvar_create( &msg_context_global_key, msg_StackDestroy );
#ifndef LIBVLC_USE_PTHREAD_CANCEL #ifndef LIBVLC_USE_PTHREAD_CANCEL
vlc_threadvar_create( &cancel_key, free ); vlc_threadvar_create( &cancel_key, free );
#endif #endif
...@@ -214,7 +211,6 @@ void vlc_threads_end( void ) ...@@ -214,7 +211,6 @@ void vlc_threads_end( void )
#ifndef LIBVLC_USE_PTHREAD #ifndef LIBVLC_USE_PTHREAD
vlc_threadvar_delete( &cancel_key ); vlc_threadvar_delete( &cancel_key );
#endif #endif
vlc_threadvar_delete( &msg_context_global_key );
} }
i_initializations--; i_initializations--;
......
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