73dae11255
Asterisk is a complete PBX in software. It provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in three protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware. Asterisk provides Voicemail services with Directory, Call Conferencing, Interactive Voice Response, Call Queuing. It has support for three-way calling, caller ID services, ADSI, SIP and H.323 (as both client and gateway). This is a standard version. It is scheduled to go to security fixes only on October 3th, 2018, and EOL on October 3th, 2019. See here for more information about Asterisk versions: https://wiki.asterisk.org/wiki/display/AST/Asterisk+Versions
76 lines
2.6 KiB
C
76 lines
2.6 KiB
C
$NetBSD: patch-include_asterisk_lock.h,v 1.1 2018/07/16 21:53:05 joerg Exp $
|
|
|
|
--- include/asterisk/lock.h.orig 2015-10-09 21:48:48.000000000 +0000
|
|
+++ include/asterisk/lock.h
|
|
@@ -634,6 +634,17 @@ static void __attribute__((destructor))
|
|
*/
|
|
#define SCOPED_CHANNELLOCK(varname, chan) SCOPED_LOCK(varname, (chan), ast_channel_lock, ast_channel_unlock)
|
|
|
|
+#undef pthread_mutex_lock
|
|
+#undef pthread_mutex_unlock
|
|
+#undef pthread_mutex_trylock
|
|
+#undef pthread_mutex_init
|
|
+#undef pthread_mutex_destroy
|
|
+#undef pthread_cond_init
|
|
+#undef pthread_cond_destroy
|
|
+#undef pthread_cond_signal
|
|
+#undef pthread_cond_broadcast
|
|
+#undef pthread_cond_wait
|
|
+#undef pthread_cond_timedwait
|
|
#ifndef __CYGWIN__ /* temporary disabled for cygwin */
|
|
#define pthread_mutex_t use_ast_mutex_t_instead_of_pthread_mutex_t
|
|
#define pthread_cond_t use_ast_cond_t_instead_of_pthread_cond_t
|
|
@@ -654,7 +665,7 @@ static void __attribute__((destructor))
|
|
|
|
#define gethostbyname __gethostbyname__is__not__reentrant__use__ast_gethostbyname__instead__
|
|
|
|
-#ifndef __linux__
|
|
+#if !defined(__linux__) && !defined(__DragonFly__)
|
|
#define pthread_create __use_ast_pthread_create_instead__
|
|
#endif
|
|
|
|
@@ -676,6 +687,10 @@ int ast_atomic_fetchadd_int_slow(volatil
|
|
#include "libkern/OSAtomic.h"
|
|
#endif
|
|
|
|
+#if defined(HAVE_SYS_ATOMIC_H)
|
|
+#include <sys/atomic.h>
|
|
+#endif
|
|
+
|
|
/*! \brief Atomically add v to *p and return * the previous value of *p.
|
|
* This can be used to handle reference counts, and the return value
|
|
* can be used to generate unique identifiers.
|
|
@@ -696,6 +711,16 @@ AST_INLINE_API(int ast_atomic_fetchadd_i
|
|
{
|
|
return OSAtomicAdd64(v, (int64_t *) p) - v;
|
|
})
|
|
+#elif defined(HAVE_SYS_ATOMIC_H) && (SIZEOF_INT == 4)
|
|
+AST_INLINE_API(int ast_atomic_fetchadd_int(volatile int *p, int v),
|
|
+{
|
|
+ return atomic_add_32_nv((uint32_t *)p, v) - v;
|
|
+})
|
|
+#elif defined(HAVE_SYS_ATOMIC_H) && (SIZEOF_INT == 8)
|
|
+AST_INLINE_API(int ast_atomic_fetchadd_int(volatile int *p, int v),
|
|
+{
|
|
+ return atomic_add_64_nv((uint64_t *)p, v) - v;
|
|
+})
|
|
#elif defined (__i386__) || defined(__x86_64__)
|
|
#ifdef sun
|
|
AST_INLINE_API(int ast_atomic_fetchadd_int(volatile int *p, int v),
|
|
@@ -743,6 +768,16 @@ AST_INLINE_API(int ast_atomic_dec_and_te
|
|
{
|
|
return OSAtomicAdd64( -1, (int64_t *) p) == 0;
|
|
})
|
|
+#elif defined(HAVE_SYS_ATOMIC_H) && (SIZEOF_INT == 4)
|
|
+AST_INLINE_API(int ast_atomic_dec_and_test(volatile int *p),
|
|
+{
|
|
+ return atomic_dec_32_nv((uint32_t *)p) == 0;
|
|
+})
|
|
+#elif defined(HAVE_SYS_ATOMIC_H) && (SIZEOF_INT == 8)
|
|
+AST_INLINE_API(int ast_atomic_dec_and_test(volatile int *p),
|
|
+{
|
|
+ return atomic_dec_64_nv((uint64_t *)p) == 0;
|
|
+})
|
|
#else
|
|
AST_INLINE_API(int ast_atomic_dec_and_test(volatile int *p),
|
|
{
|