Revision: 18753
http://opalvoip.svn.sourceforge.net/opalvoip/?rev=18753&view=rev
Author: rjongbloed
Date: 2007-10-22 22:47:14 -0700 (Mon, 22 Oct 2007)
Log Message:
-----------
Applied OpenH323 patch 1703671
PTrace::Begin() longer full thread name
Thanks Fabrizio Ammollo (fammollo)
Modified Paths:
--------------
ptlib/trunk/src/ptlib/common/osutils.cxx
Modified: ptlib/trunk/src/ptlib/common/osutils.cxx
===================================================================
--- ptlib/trunk/src/ptlib/common/osutils.cxx 2007-10-23 05:44:04 UTC (rev 18752)
+++ ptlib/trunk/src/ptlib/common/osutils.cxx 2007-10-23 05:47:14 UTC (rev 18753)
@@ -1209,8 +1209,8 @@
<< setfill(' ') << dec;
else {
PString name = thread->GetThreadName();
- if (name.GetLength() <= 12)
- stream << setw(12) << name;
+ if (name.GetLength() <= 23)
+ stream << setw(23) << name;
else
stream << name.Left(10) << "..." << name.Right(10);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|