FFmpeg
Data Structures | Macros | Typedefs | Functions
os2threads.h File Reference
#include <os2.h>
#include <stdlib.h>
#include <time.h>
#include <sys/builtin.h>
#include <sys/fmutex.h>
#include "libavutil/attributes.h"
#include "libavutil/common.h"

Go to the source code of this file.

Data Structures

struct  pthread_t
 
struct  pthread_cond_t
 
struct  pthread_once_t
 

Macros

#define INCL_DOS
 
#define INCL_DOSERRORS
 
#define PTHREAD_MUTEX_INITIALIZER   _FMUTEX_INITIALIZER
 
#define PTHREAD_ONCE_INIT   {0, _FMUTEX_INITIALIZER}
 

Typedefs

typedef void pthread_attr_t
 
typedef _fmutex pthread_mutex_t
 
typedef void pthread_mutexattr_t
 
typedef void pthread_condattr_t
 

Functions

static void thread_entry (void *arg)
 
static av_always_inline int pthread_create (pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg)
 
static av_always_inline int pthread_join (pthread_t thread, void **value_ptr)
 
static av_always_inline int pthread_mutex_init (pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
 
static av_always_inline int pthread_mutex_destroy (pthread_mutex_t *mutex)
 
static av_always_inline int pthread_mutex_lock (pthread_mutex_t *mutex)
 
static av_always_inline int pthread_mutex_unlock (pthread_mutex_t *mutex)
 
static av_always_inline int pthread_cond_init (pthread_cond_t *cond, const pthread_condattr_t *attr)
 
static av_always_inline int pthread_cond_destroy (pthread_cond_t *cond)
 
static av_always_inline int pthread_cond_signal (pthread_cond_t *cond)
 
static av_always_inline int pthread_cond_broadcast (pthread_cond_t *cond)
 
static av_always_inline int pthread_cond_timedwait (pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime)
 
static av_always_inline int pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex)
 
static av_always_inline int pthread_once (pthread_once_t *once_control, void(*init_routine)(void))
 

Detailed Description

os2threads to pthreads wrapper

Definition in file os2threads.h.

Macro Definition Documentation

◆ INCL_DOS

#define INCL_DOS

Definition at line 29 of file os2threads.h.

◆ INCL_DOSERRORS

#define INCL_DOSERRORS

Definition at line 30 of file os2threads.h.

◆ PTHREAD_MUTEX_INITIALIZER

#define PTHREAD_MUTEX_INITIALIZER   _FMUTEX_INITIALIZER

Definition at line 56 of file os2threads.h.

◆ PTHREAD_ONCE_INIT

#define PTHREAD_ONCE_INIT   {0, _FMUTEX_INITIALIZER}

Definition at line 71 of file os2threads.h.

Typedef Documentation

◆ pthread_attr_t

typedef void pthread_attr_t

Definition at line 51 of file os2threads.h.

◆ pthread_mutex_t

typedef _fmutex pthread_mutex_t

Definition at line 53 of file os2threads.h.

◆ pthread_mutexattr_t

typedef void pthread_mutexattr_t

Definition at line 54 of file os2threads.h.

◆ pthread_condattr_t

typedef void pthread_condattr_t

Definition at line 64 of file os2threads.h.

Function Documentation

◆ thread_entry()

static void thread_entry ( void *  arg)
static

Definition at line 73 of file os2threads.h.

Referenced by pthread_create().

◆ pthread_create()

static av_always_inline int pthread_create ( pthread_t thread,
const pthread_attr_t attr,
void *(*)(void *)  start_routine,
void *  arg 
)
static

◆ pthread_join()

static av_always_inline int pthread_join ( pthread_t  thread,
void **  value_ptr 
)
static

◆ pthread_mutex_init()

static av_always_inline int pthread_mutex_init ( pthread_mutex_t mutex,
const pthread_mutexattr_t attr 
)
static

◆ pthread_mutex_destroy()

static av_always_inline int pthread_mutex_destroy ( pthread_mutex_t mutex)
static

◆ pthread_mutex_lock()

static av_always_inline int pthread_mutex_lock ( pthread_mutex_t mutex)
static

Definition at line 119 of file os2threads.h.

Referenced by pthread_cond_timedwait(), and pthread_cond_wait().

◆ pthread_mutex_unlock()

static av_always_inline int pthread_mutex_unlock ( pthread_mutex_t mutex)
static

Definition at line 126 of file os2threads.h.

Referenced by pthread_cond_timedwait(), and pthread_cond_wait().

◆ pthread_cond_init()

static av_always_inline int pthread_cond_init ( pthread_cond_t cond,
const pthread_condattr_t attr 
)
static

◆ pthread_cond_destroy()

static av_always_inline int pthread_cond_destroy ( pthread_cond_t cond)
static

◆ pthread_cond_signal()

static av_always_inline int pthread_cond_signal ( pthread_cond_t cond)
static

◆ pthread_cond_broadcast()

static av_always_inline int pthread_cond_broadcast ( pthread_cond_t cond)
static

◆ pthread_cond_timedwait()

static av_always_inline int pthread_cond_timedwait ( pthread_cond_t cond,
pthread_mutex_t mutex,
const struct timespec *  abstime 
)
static

Definition at line 170 of file os2threads.h.

Referenced by sch_wait(), and udp_read().

◆ pthread_cond_wait()

static av_always_inline int pthread_cond_wait ( pthread_cond_t cond,
pthread_mutex_t mutex 
)
static

◆ pthread_once()

static av_always_inline int pthread_once ( pthread_once_t once_control,
void(*)(void)  init_routine 
)
static

Definition at line 210 of file os2threads.h.

Referenced by ff_jni_get_env(), and vtenc_init().