Imported Upstream version 1.2.0
[psensor-pkg-debian.git] / src / lib / pmutex.c
1 /*
2  * Copyright (C) 2010-2016 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 #include <string.h>
25
26 int pmutex_lock(pthread_mutex_t *m)
27 {
28         int ret;
29
30         ret = pthread_mutex_lock(m);
31
32         if (ret)
33                 log_err("pmutex_lock: %p %d %s", m, ret, strerror(ret));
34
35         return ret;
36 }
37
38 int pmutex_unlock(pthread_mutex_t *m)
39 {
40         int ret;
41
42         ret = pthread_mutex_unlock(m);
43
44         if (ret)
45                 log_err("pmutex_unlock: %p %d", m, ret);
46
47         return ret;
48 }
49
50 int pmutex_init(pthread_mutex_t *m)
51 {
52         pthread_mutexattr_t attr;
53         int ret;
54
55         pthread_mutexattr_init(&attr);
56         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
57
58         ret = pthread_mutex_init(m, &attr);
59
60         if (ret)
61                 log_err("pmutex_init: %p %d", m, ret);
62
63         return ret;
64 }