updates.
[silc.git] / lib / silcutil / win32 / silcwin32mutex.c
1 /*
2
3   silcwin32mutex.c
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program 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
17   GNU General Public License for more details.
18
19 */
20 /* $Id$ */
21
22 #include "silcincludes.h"
23
24 #ifdef SILC_THREADS
25
26 /* SILC Mutex structure */
27 struct SilcMutexStruct {
28   HANDLE mutex;
29 };
30
31 bool silc_mutex_alloc(SilcMutex *mutex)
32 {
33   *mutex = silc_calloc(1, sizeof(**mutex));
34   (*mutex)->mutex = CreateMutex(NULL, FALSE, NULL);
35   if (!(*mutex)->mutex) {
36     silc_free(*mutex);
37     return FALSE;
38   }
39   return TRUE;
40 }
41
42 void silc_mutex_free(SilcMutex mutex)
43 {
44   CloseHandle(mutex->mutex);
45   silc_free(mutex);
46 }
47
48 void silc_mutex_lock(SilcMutex mutex)
49 {
50   WaitForSingleObject(mutex->mutex, INFINITE);
51 }
52
53 void silc_mutex_unlock(SilcMutex mutex)
54 {
55   ReleaseMutex(mutex->mutex);
56 }
57
58 #endif /* SILC_THREADS */