mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 23:23:09 +00:00
This commit is the result of the following actions:
- Running gdb/copyright.py to update all of the copyright headers to
include 2024,
- Manually updating a few files the copyright.py script told me to
update, these files had copyright headers embedded within the
file,
- Regenerating gdbsupport/Makefile.in to refresh it's copyright
date,
- Using grep to find other files that still mentioned 2023. If
these files were updated last year from 2022 to 2023 then I've
updated them this year to 2024.
I'm sure I've probably missed some dates. Feel free to fix them up as
you spot them.
113 lines
2.4 KiB
C
113 lines
2.4 KiB
C
/* This testcase is part of GDB, the GNU debugger.
|
|
|
|
Copyright 2009-2024 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
|
|
unsigned int args[2];
|
|
|
|
pthread_barrier_t barrier;
|
|
pthread_t child_thread_2, child_thread_3;
|
|
|
|
void
|
|
sigusr1_handler (int signo)
|
|
{
|
|
}
|
|
|
|
void
|
|
callme (void)
|
|
{
|
|
}
|
|
|
|
void *
|
|
child_function_3 (void *arg)
|
|
{
|
|
int my_number = (long) arg;
|
|
volatile int *myp = (int *) &args[my_number];
|
|
|
|
pthread_barrier_wait (&barrier);
|
|
|
|
while (*myp > 0)
|
|
{
|
|
(*myp) ++;
|
|
callme (); /* set breakpoint thread 3 here */
|
|
}
|
|
|
|
pthread_exit (NULL);
|
|
}
|
|
|
|
void *
|
|
child_function_2 (void *arg)
|
|
{
|
|
int my_number = (long) arg;
|
|
volatile int *myp = (int *) &args[my_number];
|
|
|
|
pthread_barrier_wait (&barrier);
|
|
|
|
while (*myp > 0)
|
|
{
|
|
(*myp) ++;
|
|
callme (); /* set breakpoint thread 2 here */
|
|
}
|
|
|
|
pthread_exit (NULL);
|
|
}
|
|
|
|
static int
|
|
wait_threads (void)
|
|
{
|
|
return 1; /* in wait_threads */
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int res;
|
|
long i;
|
|
|
|
signal (SIGUSR1, sigusr1_handler);
|
|
|
|
/* Call these early so that PLTs for these are resolved soon,
|
|
instead of in the threads. RTLD_NOW should work as well. */
|
|
usleep (0);
|
|
pthread_barrier_init (&barrier, NULL, 1);
|
|
pthread_barrier_wait (&barrier);
|
|
|
|
pthread_barrier_init (&barrier, NULL, 2);
|
|
|
|
i = 0;
|
|
args[i] = 1;
|
|
res = pthread_create (&child_thread_2,
|
|
NULL, child_function_2, (void *) i);
|
|
pthread_barrier_wait (&barrier);
|
|
callme ();
|
|
|
|
i = 1;
|
|
args[i] = 1;
|
|
res = pthread_create (&child_thread_3,
|
|
NULL, child_function_3, (void *) i);
|
|
pthread_barrier_wait (&barrier);
|
|
wait_threads (); /* set wait-threads breakpoint here */
|
|
|
|
pthread_join (child_thread_2, NULL);
|
|
pthread_join (child_thread_3, NULL);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
}
|