mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
Twinkle is a soft phone for your voice over IP communcations using the SIP protocol. You can use it for direct IP phone to IP phone communication or in a network using a SIP proxy to route your calls. WWW: http://www.twinklephone.com/ Approved by: garga (mentor)
11 lines
394 B
C++
11 lines
394 B
C++
--- src/threads/mutex.cpp Sat Apr 22 21:09:20 2006
|
|
+++ src/threads/mutex.cpp Sat Apr 22 21:08:41 2006
|
|
@@ -35,7 +35,7 @@
|
|
pthread_mutexattr_init(&attr);
|
|
|
|
|
|
- int ret = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
|
|
+ int ret = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
|
if (ret != 0) throw string(
|
|
"t_mutex::t_mutex failed to create a recursive mutex.");
|
|
|