gdb.threads/execl.c: Ensure all threads are started before execl.
authorJohn Baldwin <jhb@FreeBSD.org>
Tue, 7 Mar 2023 00:55:22 +0000 (16:55 -0800)
committerJohn Baldwin <jhb@FreeBSD.org>
Tue, 7 Mar 2023 00:55:22 +0000 (16:55 -0800)
Use a pthread_barrier to ensure all threads are started before
proceeding to the breakpoint where info threads output is checked.

gdb/testsuite/gdb.threads/execl.c

index 8fb42e7e9ed94a9abb6a99b71e3ae7f4883b83c7..b9b42a292478dddaa6a641fb69c8eed1ac684ebe 100644 (file)
 #include <string.h>
 #include <stdlib.h>
 
+static pthread_barrier_t threads_started_barrier;
+
 void *
 thread_function (void *arg)
 {
+  pthread_barrier_wait (&threads_started_barrier);
+
   while (1)
     sleep (100);
   return NULL;
@@ -41,9 +45,13 @@ main (int argc, char* argv[])
   pthread_t thread2;
   char *new_image;
 
+  pthread_barrier_init (&threads_started_barrier, NULL, 3);
+
   pthread_create (&thread1, NULL, thread_function, NULL);
   pthread_create (&thread2, NULL, thread_function, NULL);
 
+  pthread_barrier_wait (&threads_started_barrier);
+
   new_image = malloc (strlen (argv[0]) + 2);
   strcpy (new_image, argv[0]);
   strcat (new_image, "1");