mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-16 08:49:01 +00:00
add cross platform mutex abstraction.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4409 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d7a28c73dd
commit
ea8544579d
@ -147,6 +147,10 @@
|
|||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\src\iax-mutex.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\src\iax.c"
|
RelativePath=".\src\iax.c"
|
||||||
>
|
>
|
||||||
@ -189,6 +193,10 @@
|
|||||||
RelativePath=".\src\iax-client.h"
|
RelativePath=".\src\iax-client.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\src\iax-mutex.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\src\iax.h"
|
RelativePath=".\src\iax.h"
|
||||||
>
|
>
|
||||||
|
@ -8,8 +8,8 @@ AM_CFLAGS += $(UCFLAGS)
|
|||||||
|
|
||||||
pkgdir = $(libdir)
|
pkgdir = $(libdir)
|
||||||
pkg_LTLIBRARIES=libiax.la
|
pkg_LTLIBRARIES=libiax.la
|
||||||
libiax_la_SOURCES = iax2-parser.c iax.c md5.c jitterbuf.c
|
libiax_la_SOURCES = iax2-parser.c iax.c md5.c jitterbuf.c iax-mutex.c
|
||||||
library_includedir = $(prefix)/include/iax
|
library_includedir = $(prefix)/include/iax
|
||||||
library_include_HEADERS = md5.h frame.h iax-client.h iax2.h iax2-parser.h iax.h
|
library_include_HEADERS = md5.h frame.h iax-client.h iax2.h iax2-parser.h iax.h iax-mutex.h
|
||||||
noinst_HEADERS = jitterbuf.h
|
noinst_HEADERS = jitterbuf.h
|
||||||
|
|
||||||
|
105
libs/iax/src/iax-mutex.c
Normal file
105
libs/iax/src/iax-mutex.c
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
* Simple Mutex abstraction
|
||||||
|
* Copyright(C) 2007 Michael Jerris
|
||||||
|
*
|
||||||
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||||
|
* copies of the Software, and permit persons to whom the Software is
|
||||||
|
* furnished to do so.
|
||||||
|
*
|
||||||
|
* This work is provided under this license on an "as is" basis, without warranty of any kind,
|
||||||
|
* either expressed or implied, including, without limitation, warranties that the covered code
|
||||||
|
* is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire
|
||||||
|
* risk as to the quality and performance of the covered code is with you. Should any covered
|
||||||
|
* code prove defective in any respect, you (not the initial developer or any other contributor)
|
||||||
|
* assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty
|
||||||
|
* constitutes an essential part of this license. No use of any covered code is authorized hereunder
|
||||||
|
* except under this disclaimer.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "iax-mutex.h"
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#define _WIN32_WINNT 0x0400
|
||||||
|
#include <windows.h>
|
||||||
|
struct mutex {
|
||||||
|
CRITICAL_SECTION mutex;
|
||||||
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <pthread.h>
|
||||||
|
struct mutex {
|
||||||
|
pthread_mutex_t mutex;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
mutex_status_t mutex_create(mutex_t **mutex)
|
||||||
|
{
|
||||||
|
mutex_t *check = NULL;
|
||||||
|
|
||||||
|
check = (mutex_t *)malloc(sizeof(**mutex));
|
||||||
|
if (!check)
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#ifdef WIN32
|
||||||
|
InitializeCriticalSection(&check->mutex);
|
||||||
|
#else
|
||||||
|
if (pthread_mutex_init(&check->mutex, NULL))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
*mutex = check;
|
||||||
|
|
||||||
|
return MUTEX_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
mutex_status_t mutex_destroy(mutex_t *mutex)
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
DeleteCriticalSection(&mutex->mutex);
|
||||||
|
#else
|
||||||
|
if (pthread_mutex_destroy(&mutex->mutex))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#endif
|
||||||
|
free(mutex);
|
||||||
|
return MUTEX_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
mutex_status_t mutex_lock(mutex_t *mutex)
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
EnterCriticalSection(&mutex->mutex);
|
||||||
|
#else
|
||||||
|
if (pthread_mutex_lock(&mutex->mutex))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#endif
|
||||||
|
return MUTEX_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
mutex_status_t mutex_trylock(mutex_t *mutex)
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
if (!TryEnterCriticalSection(&mutex->mutex))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#else
|
||||||
|
if (pthread_mutex_trylock(&mutex->mutex))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#endif
|
||||||
|
return MUTEX_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
mutex_status_t mutex_unlock(mutex_t *mutex)
|
||||||
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
LeaveCriticalSection(&mutex->mutex);
|
||||||
|
#else
|
||||||
|
if (pthread_mutex_unlock(&mutex->mutex))
|
||||||
|
return MUTEX_FAILURE;
|
||||||
|
#endif
|
||||||
|
return MUTEX_SUCCESS;
|
||||||
|
}
|
37
libs/iax/src/iax-mutex.h
Normal file
37
libs/iax/src/iax-mutex.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* Simple Mutex abstraction
|
||||||
|
* Copyright(C) 2007 Michael Jerris
|
||||||
|
*
|
||||||
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
||||||
|
* copies of the Software, and permit persons to whom the Software is
|
||||||
|
* furnished to do so.
|
||||||
|
*
|
||||||
|
* This work is provided under this license on an "as is" basis, without warranty of any kind,
|
||||||
|
* either expressed or implied, including, without limitation, warranties that the covered code
|
||||||
|
* is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire
|
||||||
|
* risk as to the quality and performance of the covered code is with you. Should any covered
|
||||||
|
* code prove defective in any respect, you (not the initial developer or any other contributor)
|
||||||
|
* assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty
|
||||||
|
* constitutes an essential part of this license. No use of any covered code is authorized hereunder
|
||||||
|
* except under this disclaimer.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef _SIMPLE_ABSTRACT_MUTEX_H
|
||||||
|
#define _SIMPLE_ABSTRACT_MUTEX_H
|
||||||
|
|
||||||
|
typedef struct mutex mutex_t;
|
||||||
|
|
||||||
|
typedef enum mutex_status {
|
||||||
|
MUTEX_SUCCESS,
|
||||||
|
MUTEX_FAILURE
|
||||||
|
} mutex_status_t;
|
||||||
|
|
||||||
|
mutex_status_t mutex_create(mutex_t **mutex);
|
||||||
|
mutex_status_t mutex_destroy(mutex_t *mutex);
|
||||||
|
mutex_status_t mutex_lock(mutex_t *mutex);
|
||||||
|
mutex_status_t mutex_trylock(mutex_t *mutex);
|
||||||
|
mutex_status_t mutex_unlock(mutex_t *mutex);
|
||||||
|
|
||||||
|
#endif
|
Loading…
x
Reference in New Issue
Block a user