aboutsummaryrefslogtreecommitdiff
path: root/devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx')
-rw-r--r--devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx b/devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx
deleted file mode 100644
index 742e7d8b2fe1..000000000000
--- a/devel/ptlib26/files/patch-src__ptlib__common__osutils.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
---- ./src/ptlib/common/osutils.cxx.orig 2009-02-14 22:04:50.000000000 +0100
-+++ ./src/ptlib/common/osutils.cxx 2009-02-14 22:04:55.000000000 +0100
-@@ -2152,21 +2152,21 @@
- PReadWriteMutex::Nest * PReadWriteMutex::GetNest() const
- {
- PWaitAndSignal mutex(nestingMutex);
-- return nestedThreads.GetAt(POrdinalKey((PINDEX)PThread::GetCurrentThreadId()));
-+ return nestedThreads.GetAt(POrdinalKey((unsigned long)PThread::GetCurrentThreadId()));
- }
-
-
- void PReadWriteMutex::EndNest()
- {
- nestingMutex.Wait();
-- nestedThreads.RemoveAt(POrdinalKey((PINDEX)PThread::GetCurrentThreadId()));
-+ nestedThreads.RemoveAt(POrdinalKey((unsigned long)PThread::GetCurrentThreadId()));
- nestingMutex.Signal();
- }
-
-
- PReadWriteMutex::Nest & PReadWriteMutex::StartNest()
- {
-- POrdinalKey threadId = (PINDEX)PThread::GetCurrentThreadId();
-+ POrdinalKey threadId = (unsigned long)PThread::GetCurrentThreadId();
-
- nestingMutex.Wait();
-