Added new IPC functions
[fmail.git] / src / posix-lock.cpp
blob90d5398757d97adc5c12bb774ea0ae10835066c0
1 /*
2 libfmail: Simple Lock class
4 Copyright (C) 2007 Carlos Daniel Ruvalcaba Valenzuela <clsdaniel@gmail.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <stdio.h>
22 #include <string.h>
23 #include <malloc.h>
25 #include <pthread.h>
26 #include <libfmail/lock.h>
28 struct _oslock{
29 pthread_mutex_t lock;
32 Lock::Lock(){
33 os_lock = (OSLock*)malloc(sizeof(OSLock));
34 pthread_mutex_init(&(os_lock->lock), NULL);
37 Lock::~Lock(){
38 pthread_mutex_destroy(&(os_lock->lock));
39 free(os_lock);
42 int Lock::Acquire(){
43 return pthread_mutex_lock(&(os_lock->lock));
46 int Lock::Release(){
47 return pthread_mutex_unlock(&(os_lock->lock));
50 int Lock::TryAcquire(){
51 return pthread_mutex_trylock(&(os_lock->lock));