3 MPDM - Minimum Profit Data Manager
4 Copyright (C) 2003/2010 Angel Ortega <angel@triptico.com>
6 mpdm_t.c - Threading primitives
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 http://www.triptico.com
38 #ifdef CONFOPT_PTHREADS
42 #ifdef CONFOPT_POSIXSEMS
43 #include <semaphore.h>
52 * mpdm_sleep - Sleeps a number of milliseconds.
53 * @msecs: the milliseconds to sleep
55 * Sleeps a number of milliseconds.
58 void mpdm_sleep(int msecs
)
66 #ifdef CONFOPT_NANOSLEEP
69 ts
.tv_sec
= msecs
/ 1000;
70 ts
.tv_nsec
= (msecs
% 1000) * 1000000;
80 * mpdm_new_mutex - Creates a new mutex.
82 * Creates a new mutex.
85 mpdm_t
mpdm_new_mutex(void)
93 h
= CreateMutex(NULL
, FALSE
, NULL
);
101 #ifdef CONFOPT_PTHREADS
104 if (pthread_mutex_init(&m
, NULL
) == 0) {
111 return MPDM_C(MPDM_MUTEX
, ptr
, size
);
116 * mpdm_mutex_lock - Locks a mutex.
117 * @mutex: the mutex to be locked
119 * Locks a mutex. If the mutex is not already locked,
120 * it waits until it is.
123 void mpdm_mutex_lock(mpdm_t mutex
)
126 HANDLE
*h
= (HANDLE
*) mutex
->data
;
128 WaitForSingleObject(*h
, INFINITE
);
131 #ifdef CONFOPT_PTHREADS
132 pthread_mutex_t
*m
= (pthread_mutex_t
*) mutex
->data
;
134 pthread_mutex_lock(m
);
140 * mpdm_mutex_unlock - Unlocks a mutex.
141 * @mutex: the mutex to be unlocked
143 * Unlocks a previously locked mutex. The thread
144 * unlocking the mutex must be the one who locked it.
147 void mpdm_mutex_unlock(mpdm_t mutex
)
150 HANDLE
*h
= (HANDLE
*) mutex
->data
;
155 #ifdef CONFOPT_PTHREADS
156 pthread_mutex_t
*m
= (pthread_mutex_t
*) mutex
->data
;
158 pthread_mutex_unlock(m
);
166 * mpdm_new_semaphore - Creates a new semaphore.
167 * @init_value: the initial value of the semaphore.
169 * Creates a new semaphore with an @init_value.
172 mpdm_t
mpdm_new_semaphore(int init_value
)
180 if ((h
= CreateSemaphore(NULL
, init_value
, 0x7fffffff, NULL
)) != NULL
) {
187 #ifdef CONFOPT_POSIXSEMS
190 if (sem_init(&s
, 0, init_value
) == 0) {
197 return MPDM_C(MPDM_SEMAPHORE
, ptr
, size
);
202 * mpdm_semaphore_wait - Waits for a semaphore to be ready.
203 * @sem: the semaphore to wait onto
205 * Waits for the value of a semaphore to be > 0. If it's
206 * not, the thread waits until it is.
209 void mpdm_semaphore_wait(mpdm_t sem
)
212 HANDLE
*h
= (HANDLE
*) sem
->data
;
214 WaitForSingleObject(*h
, INFINITE
);
217 #ifdef CONFOPT_POSIXSEMS
218 sem_t
*s
= (sem_t
*) sem
->data
;
226 * mpdm_semaphore_post - Increments the value of a semaphore.
227 * @sem: the semaphore to increment
229 * Increments by 1 the value of a semaphore.
232 void mpdm_semaphore_post(mpdm_t sem
)
235 HANDLE
*h
= (HANDLE
*) sem
->data
;
237 ReleaseSemaphore(*h
, 1, NULL
);
240 #ifdef CONFOPT_POSIXSEMS
241 sem_t
*s
= (sem_t
*) sem
->data
;
250 static void thread_caller(mpdm_t a
)
252 /* ignore return value */
254 (mpdm_aget(a
, 0), mpdm_aget(a
, 1), mpdm_aget(a
, 2)));
256 /* was referenced in mpdm_exec_thread() */
262 DWORD WINAPI
win32_thread(LPVOID param
)
264 thread_caller((mpdm_t
) param
);
270 #ifdef CONFOPT_PTHREADS
271 void *pthreads_thread(void *args
)
273 thread_caller((mpdm_t
) args
);
280 * mpdm_exec_thread - Runs an executable value in a new thread.
281 * @c: the executable value
282 * @args: executable arguments
285 * Runs the @c executable value in a new thread. The code
286 * starts executing immediately. The @args and @ctxt arguments
287 * are sent to the executable value as arguments.
289 * Returns a handle for the thread.
292 mpdm_t
mpdm_exec_thread(mpdm_t c
, mpdm_t args
, mpdm_t ctxt
)
301 /* to be unreferenced at thread stop */
302 a
= mpdm_ref(MPDM_A(3));
305 mpdm_aset(a
, args
, 1);
306 mpdm_aset(a
, ctxt
, 2);
311 t
= CreateThread(NULL
, 0, win32_thread
, a
, 0, NULL
);
320 #ifdef CONFOPT_PTHREADS
323 if (pthread_create(&pt
, NULL
, pthreads_thread
, a
) == 0) {
324 size
= sizeof(pthread_t
);
330 return MPDM_C(MPDM_THREAD
, ptr
, size
);