2 * Copyright (C) 2010-2011 x264 project
4 * Authors: Steven Walters <kemuri9@gmail.com>
5 * Pegasys Inc. <http://www.pegasys-inc.com>
7 * This file is part of Libav.
9 * Libav is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * Libav is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with Libav; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * w32threads to pthreads wrapper
29 #ifndef AVCODEC_W32PTHREADS_H
30 #define AVCODEC_W32PTHREADS_H
32 /* Build up a pthread-like API using underlying Windows API. Have only static
33 * methods so as to not conflict with a potentially linked in pthread-win32
35 * As most functions here are used without checking return values,
36 * only implement return values as necessary. */
38 #define WIN32_LEAN_AND_MEAN
44 void *(*func)(void* arg);
49 /* the conditional variable api for windows 6.0+ uses critical sections and
51 typedef CRITICAL_SECTION pthread_mutex_t;
53 /* This is the CONDITIONAL_VARIABLE typedef for using Window's native
54 * conditional variables on kernels 6.0+.
55 * MinGW does not currently have this typedef. */
60 /* function pointers to conditional variable API on windows 6.0+ kernels */
61 static void (WINAPI *cond_broadcast)(pthread_cond_t *cond);
62 static void (WINAPI *cond_init)(pthread_cond_t *cond);
63 static void (WINAPI *cond_signal)(pthread_cond_t *cond);
64 static BOOL (WINAPI *cond_wait)(pthread_cond_t *cond, pthread_mutex_t *mutex,
67 static unsigned __stdcall attribute_align_arg win32thread_worker(void *arg)
70 h->ret = h->func(h->arg);
74 static int pthread_create(pthread_t *thread, const void *unused_attr,
75 void *(*start_routine)(void*), void *arg)
77 thread->func = start_routine;
79 thread->handle = (void*)_beginthreadex(NULL, 0, win32thread_worker, thread,
81 return !thread->handle;
84 static void pthread_join(pthread_t thread, void **value_ptr)
86 DWORD ret = WaitForSingleObject(thread.handle, INFINITE);
87 if (ret != WAIT_OBJECT_0)
90 *value_ptr = thread.ret;
91 CloseHandle(thread.handle);
94 static inline int pthread_mutex_init(pthread_mutex_t *m, void* attr)
96 InitializeCriticalSection(m);
99 static inline int pthread_mutex_destroy(pthread_mutex_t *m)
101 DeleteCriticalSection(m);
104 static inline int pthread_mutex_lock(pthread_mutex_t *m)
106 EnterCriticalSection(m);
109 static inline int pthread_mutex_unlock(pthread_mutex_t *m)
111 LeaveCriticalSection(m);
115 /* for pre-Windows 6.0 platforms we need to define and use our own condition
116 * variable and api */
118 pthread_mutex_t mtx_broadcast;
119 pthread_mutex_t mtx_waiter_count;
120 volatile int waiter_count;
123 volatile int is_broadcast;
126 static void pthread_cond_init(pthread_cond_t *cond, const void *unused_attr)
128 win32_cond_t *win32_cond = NULL;
134 /* non native condition variables */
135 win32_cond = av_mallocz(sizeof(win32_cond_t));
138 cond->ptr = win32_cond;
139 win32_cond->semaphore = CreateSemaphore(NULL, 0, 0x7fffffff, NULL);
140 if (!win32_cond->semaphore)
142 win32_cond->waiters_done = CreateEvent(NULL, TRUE, FALSE, NULL);
143 if (!win32_cond->waiters_done)
146 pthread_mutex_init(&win32_cond->mtx_waiter_count, NULL);
147 pthread_mutex_init(&win32_cond->mtx_broadcast, NULL);
150 static void pthread_cond_destroy(pthread_cond_t *cond)
152 win32_cond_t *win32_cond = cond->ptr;
153 /* native condition variables do not destroy */
157 /* non native condition variables */
158 CloseHandle(win32_cond->semaphore);
159 CloseHandle(win32_cond->waiters_done);
160 pthread_mutex_destroy(&win32_cond->mtx_waiter_count);
161 pthread_mutex_destroy(&win32_cond->mtx_broadcast);
162 av_freep(&win32_cond);
166 static void pthread_cond_broadcast(pthread_cond_t *cond)
168 win32_cond_t *win32_cond = cond->ptr;
171 if (cond_broadcast) {
172 cond_broadcast(cond);
176 /* non native condition variables */
177 pthread_mutex_lock(&win32_cond->mtx_broadcast);
178 pthread_mutex_lock(&win32_cond->mtx_waiter_count);
181 if (win32_cond->waiter_count) {
182 win32_cond->is_broadcast = 1;
187 ReleaseSemaphore(win32_cond->semaphore, win32_cond->waiter_count, NULL);
188 pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
189 WaitForSingleObject(win32_cond->waiters_done, INFINITE);
190 ResetEvent(win32_cond->waiters_done);
191 win32_cond->is_broadcast = 0;
193 pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
194 pthread_mutex_unlock(&win32_cond->mtx_broadcast);
197 static int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
199 win32_cond_t *win32_cond = cond->ptr;
202 cond_wait(cond, mutex, INFINITE);
206 /* non native condition variables */
207 pthread_mutex_lock(&win32_cond->mtx_broadcast);
208 pthread_mutex_lock(&win32_cond->mtx_waiter_count);
209 win32_cond->waiter_count++;
210 pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
211 pthread_mutex_unlock(&win32_cond->mtx_broadcast);
213 // unlock the external mutex
214 pthread_mutex_unlock(mutex);
215 WaitForSingleObject(win32_cond->semaphore, INFINITE);
217 pthread_mutex_lock(&win32_cond->mtx_waiter_count);
218 win32_cond->waiter_count--;
219 last_waiter = !win32_cond->waiter_count || !win32_cond->is_broadcast;
220 pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
223 SetEvent(win32_cond->waiters_done);
225 // lock the external mutex
226 return pthread_mutex_lock(mutex);
229 static void pthread_cond_signal(pthread_cond_t *cond)
231 win32_cond_t *win32_cond = cond->ptr;
238 pthread_mutex_lock(&win32_cond->mtx_broadcast);
240 /* non-native condition variables */
241 pthread_mutex_lock(&win32_cond->mtx_waiter_count);
242 have_waiter = win32_cond->waiter_count;
243 pthread_mutex_unlock(&win32_cond->mtx_waiter_count);
246 ReleaseSemaphore(win32_cond->semaphore, 1, NULL);
247 WaitForSingleObject(win32_cond->waiters_done, INFINITE);
248 ResetEvent(win32_cond->waiters_done);
251 pthread_mutex_unlock(&win32_cond->mtx_broadcast);
254 static void w32thread_init(void)
256 HANDLE kernel_dll = GetModuleHandle(TEXT("kernel32.dll"));
257 /* if one is available, then they should all be available */
259 (void*)GetProcAddress(kernel_dll, "InitializeConditionVariable");
261 (void*)GetProcAddress(kernel_dll, "WakeAllConditionVariable");
263 (void*)GetProcAddress(kernel_dll, "WakeConditionVariable");
265 (void*)GetProcAddress(kernel_dll, "SleepConditionVariableCS");
268 #endif /* AVCODEC_W32PTHREADS_H */