* gdb.threads/wp-replication.c (main): Insert some code at the start
authorDoug Evans <dje@google.com>
Wed, 22 May 2013 16:30:24 +0000 (16:30 +0000)
committerDoug Evans <dje@google.com>
Wed, 22 May 2013 16:30:24 +0000 (16:30 +0000)
to ensure the breakpoint on main is only hit once.  Fix comment.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.threads/wp-replication.c

index 8d77b7df22ec5b2107cdcd4b906a154e2f511a43..300eb75a1d4d695212593764be2524a53938fd53 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-22  Doug Evans  <dje@google.com>
+
+       * gdb.threads/wp-replication.c (main): Insert some code at the start
+       to ensure the breakpoint on main is only hit once.  Fix comment.
+
 2013-05-21  Keith Seitz  <keiths@redhat.com>
            Pedro Alves  <palves@redhat.com>
 
index a0afab2d90a9feef5f56b0dcc43bf73c6388368d..cac534e1942b739288861ffd9eeed4d89aeda9f5 100644 (file)
@@ -75,10 +75,14 @@ main ()
   pthread_t threads[NR_THREADS];
   int i;
 
+  /* Something to ensure that the breakpoint used to run to main
+     is only hit once.  */
+  empty_cycle ();
+
   while (watch_count_done == 0)
     {
-      /* GDB will modify the value of "i" at runtime and we will
-        get past this point.  */
+      /* GDB will modify the value of "watch_count_done" at runtime and we
+        will get past this point.  */
       empty_cycle ();
     }