You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

140 lines
6.1 KiB

/*****************************************************************************
* vlc_thread.h : thread implementation for vieolan client
* (c)1999 VideoLAN
*****************************************************************************
* This header is supposed to provide a portable threads implementation.
27 years ago
* Currently, it is a wrapper to the POSIX pthreads library.
*****************************************************************************/
#include <pthread.h>
/*****************************************************************************
27 years ago
* Constants
*****************************************************************************
* These constants are used by all threads in *_CreateThread() and
27 years ago
* *_DestroyThreads() functions. Since those calls are non-blocking, an integer
* value is used as a shared flag to represent the status of the thread.
*****************************************************************************/
27 years ago
/* Void status - this value can be used to be sure, in an array of recorded
* threads, that no operation is currently in progress on the concerned thread */
#define THREAD_NOP 0 /* nothing happened */
27 years ago
/* Creation status */
#define THREAD_CREATE 10 /* thread is initializing */
#define THREAD_START 11 /* thread has forked */
#define THREAD_READY 19 /* thread is ready */
27 years ago
/* Destructions status */
#define THREAD_DESTROY 20 /* destruction order has been sent */
#define THREAD_END 21 /* destruction order has been received */
#define THREAD_OVER 29 /* thread does not exist any more */
27 years ago
/* Error status */
#define THREAD_ERROR 30 /* an error occured */
#define THREAD_FATAL 31 /* an fatal error occured - program must end */
27 years ago
/*****************************************************************************
27 years ago
* Types definition
*****************************************************************************/
typedef pthread_t vlc_thread_t;
typedef pthread_mutex_t vlc_mutex_t;
typedef pthread_cond_t vlc_cond_t;
27 years ago
typedef void *(*vlc_thread_func_t)(void *p_data);
/*****************************************************************************
* Prototypes
*****************************************************************************/
27 years ago
static __inline__ int vlc_thread_create( vlc_thread_t *p_thread, char *psz_name,
vlc_thread_func_t func, void *p_data );
27 years ago
static __inline__ void vlc_thread_exit ( void );
static __inline__ void vlc_thread_join ( vlc_thread_t thread );
27 years ago
static __inline__ int vlc_mutex_init ( vlc_mutex_t *p_mutex );
static __inline__ int vlc_mutex_lock ( vlc_mutex_t *p_mutex );
static __inline__ int vlc_mutex_unlock ( vlc_mutex_t *p_mutex );
27 years ago
static __inline__ int vlc_cond_init ( vlc_cond_t *p_condvar );
static __inline__ int vlc_cond_signal ( vlc_cond_t *p_condvar );
static __inline__ int vlc_cond_wait ( vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex );
#if 0
static _inline__ int vlc_cond_timedwait ( vlc_cond_t * condvar, vlc_mutex_t * mutex,
mtime_t absoute_timeout_time );
#endif
/*****************************************************************************
27 years ago
* vlc_thread_create: create a thread
*****************************************************************************/
27 years ago
static __inline__ int vlc_thread_create( vlc_thread_t *p_thread,
char *psz_name, vlc_thread_func_t func,
void *p_data)
{
27 years ago
return pthread_create( p_thread, NULL, func, p_data );
}
/*****************************************************************************
27 years ago
* vlc_thread_exit: terminate a thread
*****************************************************************************/
27 years ago
static __inline__ void vlc_thread_exit( void )
{
pthread_exit( 0 );
}
/*****************************************************************************
27 years ago
* vlc_thread_join: wait until a thread exits
*****************************************************************************/
static __inline__ void vlc_thread_join( vlc_thread_t thread )
{
pthread_join( thread, NULL );
}
/*****************************************************************************
27 years ago
* vlc_mutex_init: initialize a mutex
*****************************************************************************/
27 years ago
static __inline__ int vlc_mutex_init( vlc_mutex_t *p_mutex )
{
27 years ago
return pthread_mutex_init( p_mutex, NULL );
}
/*****************************************************************************
27 years ago
* vlc_mutex_lock: lock a mutex
*****************************************************************************/
27 years ago
static __inline__ int vlc_mutex_lock( vlc_mutex_t *p_mutex )
{
27 years ago
return pthread_mutex_lock( p_mutex );
}
/*****************************************************************************
27 years ago
* vlc_mutex_unlock: unlock a mutex
*****************************************************************************/
27 years ago
static __inline__ int vlc_mutex_unlock( vlc_mutex_t *p_mutex )
{
27 years ago
return pthread_mutex_unlock( p_mutex );
}
/*****************************************************************************
27 years ago
* vlc_cond_init: initialize a condition
*****************************************************************************/
27 years ago
static __inline__ int vlc_cond_init( vlc_cond_t *p_condvar )
{
27 years ago
return pthread_cond_init( p_condvar, NULL );
}
/*****************************************************************************
27 years ago
* vlc_cond_signal: start a thread on condition completion
*****************************************************************************/
27 years ago
static __inline__ int vlc_cond_signal( vlc_cond_t *p_condvar )
{
27 years ago
return pthread_cond_signal( p_condvar );
}
27 years ago
/*****************************************************************************
27 years ago
* vlc_cond_wait: wait until condition completion
*****************************************************************************/
27 years ago
static __inline__ int vlc_cond_wait( vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex )
{
27 years ago
return pthread_cond_wait( p_condvar, p_mutex );
}