#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;
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");