xref: /third_party/ffmpeg/compat/os2threads.h (revision cabdff1a)
1/*
2 * Copyright (c) 2011-2017 KO Myung-Hun <komh@chollian.net>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/**
22 * @file
23 * os2threads to pthreads wrapper
24 */
25
26#ifndef COMPAT_OS2THREADS_H
27#define COMPAT_OS2THREADS_H
28
29#define INCL_DOS
30#define INCL_DOSERRORS
31#include <os2.h>
32
33#undef __STRICT_ANSI__          /* for _beginthread() */
34#include <stdlib.h>
35#include <time.h>
36
37#include <sys/builtin.h>
38#include <sys/fmutex.h>
39
40#include "libavutil/attributes.h"
41#include "libavutil/common.h"
42#include "libavutil/time.h"
43
44typedef struct {
45    TID tid;
46    void *(*start_routine)(void *);
47    void *arg;
48    void *result;
49} pthread_t;
50
51typedef void pthread_attr_t;
52
53typedef _fmutex pthread_mutex_t;
54typedef void pthread_mutexattr_t;
55
56#define PTHREAD_MUTEX_INITIALIZER _FMUTEX_INITIALIZER
57
58typedef struct {
59    HEV event_sem;
60    HEV ack_sem;
61    volatile unsigned  wait_count;
62} pthread_cond_t;
63
64typedef void pthread_condattr_t;
65
66typedef struct {
67    volatile int done;
68    _fmutex mtx;
69} pthread_once_t;
70
71#define PTHREAD_ONCE_INIT {0, _FMUTEX_INITIALIZER}
72
73static void thread_entry(void *arg)
74{
75    pthread_t *thread = arg;
76
77    thread->result = thread->start_routine(thread->arg);
78}
79
80static av_always_inline int pthread_create(pthread_t *thread,
81                                           const pthread_attr_t *attr,
82                                           void *(*start_routine)(void*),
83                                           void *arg)
84{
85    thread->start_routine = start_routine;
86    thread->arg = arg;
87    thread->result = NULL;
88
89    thread->tid = _beginthread(thread_entry, NULL, 1024 * 1024, thread);
90
91    return 0;
92}
93
94static av_always_inline int pthread_join(pthread_t thread, void **value_ptr)
95{
96    DosWaitThread(&thread.tid, DCWW_WAIT);
97
98    if (value_ptr)
99        *value_ptr = thread.result;
100
101    return 0;
102}
103
104static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex,
105                                               const pthread_mutexattr_t *attr)
106{
107    _fmutex_create(mutex, 0);
108
109    return 0;
110}
111
112static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex)
113{
114    _fmutex_close(mutex);
115
116    return 0;
117}
118
119static av_always_inline int pthread_mutex_lock(pthread_mutex_t *mutex)
120{
121    _fmutex_request(mutex, 0);
122
123    return 0;
124}
125
126static av_always_inline int pthread_mutex_unlock(pthread_mutex_t *mutex)
127{
128    _fmutex_release(mutex);
129
130    return 0;
131}
132
133static av_always_inline int pthread_cond_init(pthread_cond_t *cond,
134                                              const pthread_condattr_t *attr)
135{
136    DosCreateEventSem(NULL, &cond->event_sem, DCE_POSTONE, FALSE);
137    DosCreateEventSem(NULL, &cond->ack_sem, DCE_POSTONE, FALSE);
138
139    cond->wait_count = 0;
140
141    return 0;
142}
143
144static av_always_inline int pthread_cond_destroy(pthread_cond_t *cond)
145{
146    DosCloseEventSem(cond->event_sem);
147    DosCloseEventSem(cond->ack_sem);
148
149    return 0;
150}
151
152static av_always_inline int pthread_cond_signal(pthread_cond_t *cond)
153{
154    if (!__atomic_cmpxchg32(&cond->wait_count, 0, 0)) {
155        DosPostEventSem(cond->event_sem);
156        DosWaitEventSem(cond->ack_sem, SEM_INDEFINITE_WAIT);
157    }
158
159    return 0;
160}
161
162static av_always_inline int pthread_cond_broadcast(pthread_cond_t *cond)
163{
164    while (!__atomic_cmpxchg32(&cond->wait_count, 0, 0))
165        pthread_cond_signal(cond);
166
167    return 0;
168}
169
170static av_always_inline int pthread_cond_timedwait(pthread_cond_t *cond,
171                                                   pthread_mutex_t *mutex,
172                                                   const struct timespec *abstime)
173{
174    int64_t abs_milli = abstime->tv_sec * 1000LL + abstime->tv_nsec / 1000000;
175    ULONG t = av_clip64(abs_milli - av_gettime() / 1000, 0, ULONG_MAX);
176
177    __atomic_increment(&cond->wait_count);
178
179    pthread_mutex_unlock(mutex);
180
181    APIRET ret = DosWaitEventSem(cond->event_sem, t);
182
183    __atomic_decrement(&cond->wait_count);
184
185    DosPostEventSem(cond->ack_sem);
186
187    pthread_mutex_lock(mutex);
188
189    return (ret == ERROR_TIMEOUT) ? ETIMEDOUT : 0;
190}
191
192static av_always_inline int pthread_cond_wait(pthread_cond_t *cond,
193                                              pthread_mutex_t *mutex)
194{
195    __atomic_increment(&cond->wait_count);
196
197    pthread_mutex_unlock(mutex);
198
199    DosWaitEventSem(cond->event_sem, SEM_INDEFINITE_WAIT);
200
201    __atomic_decrement(&cond->wait_count);
202
203    DosPostEventSem(cond->ack_sem);
204
205    pthread_mutex_lock(mutex);
206
207    return 0;
208}
209
210static av_always_inline int pthread_once(pthread_once_t *once_control,
211                                         void (*init_routine)(void))
212{
213    if (!once_control->done)
214    {
215        _fmutex_request(&once_control->mtx, 0);
216
217        if (!once_control->done)
218        {
219            init_routine();
220
221            once_control->done = 1;
222        }
223
224        _fmutex_release(&once_control->mtx);
225    }
226
227    return 0;
228}
229#endif /* COMPAT_OS2THREADS_H */
230