|
From: <sv...@va...> - 2011-03-08 18:32:45
|
Author: bart
Date: 2011-03-08 18:32:36 +0000 (Tue, 08 Mar 2011)
New Revision: 11611
Log:
DRD: Removed an obsolete comment.
Modified:
trunk/drd/drd_pthread_intercepts.c
Modified: trunk/drd/drd_pthread_intercepts.c
===================================================================
--- trunk/drd/drd_pthread_intercepts.c 2011-03-08 17:53:45 UTC (rev 11610)
+++ trunk/drd/drd_pthread_intercepts.c 2011-03-08 18:32:36 UTC (rev 11611)
@@ -415,16 +415,9 @@
if (ret == 0)
{
- /*
- * Wait until the thread wrapper started.
- * @todo Find out why some regression tests fail if thread arguments are
- * passed via dynamically allocated memory and if the loop below is
- * removed.
- */
+ /* Wait until the thread wrapper started. */
while (! thread_args_p->wrapper_started)
- {
sched_yield();
- }
}
VALGRIND_DO_CLIENT_REQUEST(res, -1, VG_USERREQ__DRD_START_NEW_SEGMENT,
|