updates.
[silc.git] / lib / silcutil / unix / silcunixmutex.c
1 /*
2
3   silcunixmutex.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   pthread_mutex_t mutex;
29 };
30
31 SilcMutex silc_mutex_alloc(void)
32 {
33   SilcMutex mutex = silc_calloc(1, sizeof(*mutex));
34   pthread_mutex_init(&mutex->mutex, NULL);
35 }
36
37 void silc_mutex_free(SilcMutex mutex)
38 {
39   pthread_mutex_destroy(&mutex->mutex);
40   silc_free(mutex);
41 }
42
43 void silc_mutex_lock(SilcMutex mutex)
44 {
45   if (pthread_mutex_lock(&mutex->mutex))
46     assert(FALSE);
47 }
48
49 void silc_mutex_unlock(SilcMutex mutex)
50 {
51   if (pthread_mutex_unlock(&mutex->mutex))
52     assert(FALSE);
53 }
54
55 #endif /* SILC_THREADS */