ports/devel/ptlib/files/patch-src__ptlib__unix__tlibthrd.cxx
Gabor Kovesdan 38642b095a PWLib is a multi-platform code library that can be used to write
applications that will compile and run on the BSD Unixes, Windows, Linux
and a few other Unix variants. It was developed by Equivalence Ltd Pty.

It is used by the OpenH323 library.

WWW: http://www.openh323.org/

PR:		ports/131129
Submitted by:	"Eric L. Chen" <d9364104@mail.nchu.edu.tw>
2009-02-21 19:01:07 +00:00

47 lines
1.7 KiB
C++

--- ./src/ptlib/unix/tlibthrd.cxx.orig 2009-02-14 22:04:11.000000000 +0100
+++ ./src/ptlib/unix/tlibthrd.cxx 2009-02-14 22:04:18.000000000 +0100
@@ -216,7 +216,7 @@
{
PWaitAndSignal m(threadMutex);
- if (!activeThreads.Contains((unsigned)id))
+ if (!activeThreads.Contains((unsigned long)id))
return PFalse;
return pthread_kill(id, sig) == 0;
@@ -254,7 +254,7 @@
#endif
((PProcess *)this)->activeThreads.DisallowDeleteObjects();
- ((PProcess *)this)->activeThreads.SetAt((unsigned)PX_threadId, this);
+ ((PProcess *)this)->activeThreads.SetAt((unsigned long)PX_threadId, this);
PX_firstTimeStart = PFalse;
}
@@ -370,7 +370,7 @@
PAssertPTHREAD(pthread_create, (&PX_threadId, &threadAttr, PX_ThreadStart, this));
// put the thread into the thread list
- process.activeThreads.SetAt((unsigned)PX_threadId, this);
+ process.activeThreads.SetAt((unsigned long)PX_threadId, this);
if (process.activeThreads.GetSize() > highWaterMark)
newHighWaterMark = highWaterMark = process.activeThreads.GetSize();
@@ -693,7 +693,7 @@
{
PProcess & process = PProcess::Current();
process.threadMutex.Wait();
- PThread * thread = process.activeThreads.GetAt((unsigned)pthread_self());
+ PThread * thread = process.activeThreads.GetAt((unsigned long)pthread_self());
process.threadMutex.Signal();
return thread;
}
@@ -834,7 +834,7 @@
}
// remove this thread from the active thread list
- process.activeThreads.SetAt((unsigned)id, NULL);
+ process.activeThreads.SetAt((unsigned long)id, NULL);
// delete the thread if required, note this is done this way to avoid
// a race condition, the thread ID cannot be zeroed before the if!