ports/net/twinkle/files/patch-src-threads_mutex.cpp
Jose Alonso Cardenas Marquez f171404c45 - New port: net/twinkle
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)
2006-07-30 21:21:10 +00:00

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.");