switched to 3.9.7 defaults
[psensor-pkg-ubuntu.git] / src / lib / pmutex.c
1 /*
2  * Copyright (C) 2010-2014 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdio.h>
21
22 #include <plog.h>
23 #include <pmutex.h>
24
25 int pmutex_lock(pthread_mutex_t *m)
26 {
27         int ret;
28
29         ret = pthread_mutex_lock(m);
30
31         if (ret)
32                 log_err("pmutex_lock: %p %d", m, ret);
33
34         return ret;
35 }
36
37 int pmutex_unlock(pthread_mutex_t *m)
38 {
39         int ret;
40
41         ret = pthread_mutex_unlock(m);
42
43         if (ret)
44                 log_err("pmutex_unlock: %p %d", m, ret);
45
46         return ret;
47 }
48
49 int pmutex_init(pthread_mutex_t *m)
50 {
51         pthread_mutexattr_t attr;
52         int ret;
53
54         pthread_mutexattr_init(&attr);
55         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
56
57         ret = pthread_mutex_init(m, &attr);
58
59         if (ret)
60                 log_err("pmutex_init: %p %d", m, ret);
61
62         return ret;
63 }