|
From: <sv...@va...> - 2010-03-07 20:00:25
|
Author: bart
Date: 2010-03-07 20:00:18 +0000 (Sun, 07 Mar 2010)
New Revision: 11077
Log:
Source code cleanup - no functionality has been changed.
Modified:
trunk/drd/drd_vc.h
Modified: trunk/drd/drd_vc.h
===================================================================
--- trunk/drd/drd_vc.h 2010-03-07 19:59:35 UTC (rev 11076)
+++ trunk/drd/drd_vc.h 2010-03-07 20:00:18 UTC (rev 11077)
@@ -108,14 +108,14 @@
for (i = 0; i < vc1->size; i++)
{
while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid)
- {
j++;
- }
if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid)
return False;
#ifdef ENABLE_DRD_CONSISTENCY_CHECKS
- /* This assert statement has been commented out because of performance */
- /* reasons.*/
+ /*
+ * This assert statement has been commented out because of performance
+ * reasons.
+ */
tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
#endif
if (vc1->vc[i].count > vc2->vc[j].count)
|