mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
w32threads: Wrap the mutex functions in inline functions returning int
This allows using these wrappers in the gcrypt mutex callbacks. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
bc8c1395ca
commit
8148631269
@ -91,10 +91,26 @@ static void pthread_join(pthread_t thread, void **value_ptr)
|
||||
CloseHandle(thread.handle);
|
||||
}
|
||||
|
||||
#define pthread_mutex_init(m, a) InitializeCriticalSection(m)
|
||||
#define pthread_mutex_destroy(m) DeleteCriticalSection(m)
|
||||
#define pthread_mutex_lock(m) EnterCriticalSection(m)
|
||||
#define pthread_mutex_unlock(m) LeaveCriticalSection(m)
|
||||
static inline int pthread_mutex_init(pthread_mutex_t *m, void* attr)
|
||||
{
|
||||
InitializeCriticalSection(m);
|
||||
return 0;
|
||||
}
|
||||
static inline int pthread_mutex_destroy(pthread_mutex_t *m)
|
||||
{
|
||||
DeleteCriticalSection(m);
|
||||
return 0;
|
||||
}
|
||||
static inline int pthread_mutex_lock(pthread_mutex_t *m)
|
||||
{
|
||||
EnterCriticalSection(m);
|
||||
return 0;
|
||||
}
|
||||
static inline int pthread_mutex_unlock(pthread_mutex_t *m)
|
||||
{
|
||||
LeaveCriticalSection(m);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* for pre-Windows 6.0 platforms we need to define and use our own condition
|
||||
* variable and api */
|
||||
|
Loading…
Reference in New Issue
Block a user