forked from Imagelibrary/binutils-gdb
- New in v3: Addressed issue Tom de Vries ran into with no debug info for glibc. - New in v2: Fixed race, remove end anchor after prompt. Fix leading anchor and inferior output flushing issue against gdbserver. Now works with displaced stepping. Avoid printing inferior addresses in gdb.sum messages Fail when clone child thread is stuck on scratchpad Misc minor tweaks throughout. This adds a new gdb.threads/stepi-over-clone.exp testcase, which exercises stepping over a clone syscall, with displaced stepping vs inline stepping, and all-stop vs non-stop. We already test stepping over clone syscalls with gdb.base/step-over-syscall.exp, but this test uses pthreads, while the other test uses raw clone, and this one is more thorough. Co-authored-by: Pedro Alves <pedro@palves.net> Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=19675 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=27830 Change-Id: I95c06024736384ae8542a67ed9fdf6534c325c8e
91 lines
1.9 KiB
C
91 lines
1.9 KiB
C
/* This testcase is part of GDB, the GNU debugger.
|
|
|
|
Copyright 2021-2022 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 <stdio.h>
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
|
|
/* Set this to non-zero from GDB to start a third worker thread. */
|
|
volatile int start_third_thread = 0;
|
|
|
|
void *
|
|
thread_worker_2 (void *arg)
|
|
{
|
|
int i;
|
|
|
|
printf ("Hello from the third thread.\n");
|
|
fflush (stdout);
|
|
|
|
for (i = 0; i < 300; ++i)
|
|
sleep (1);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
thread_worker_1 (void *arg)
|
|
{
|
|
int i;
|
|
pthread_t thr;
|
|
void *val;
|
|
|
|
if (start_third_thread)
|
|
pthread_create (&thr, NULL, thread_worker_2, NULL);
|
|
|
|
printf ("Hello from the first thread.\n");
|
|
fflush (stdout);
|
|
|
|
for (i = 0; i < 300; ++i)
|
|
sleep (1);
|
|
|
|
if (start_third_thread)
|
|
pthread_join (thr, &val);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void *
|
|
thread_idle_loop (void *arg)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 300; ++i)
|
|
sleep (1);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
pthread_t thr, thr_idle;
|
|
void *val;
|
|
|
|
if (getenv ("MAKE_EXTRA_THREAD") != NULL)
|
|
pthread_create (&thr_idle, NULL, thread_idle_loop, NULL);
|
|
|
|
pthread_create (&thr, NULL, thread_worker_1, NULL);
|
|
pthread_join (thr, &val);
|
|
|
|
if (getenv ("MAKE_EXTRA_THREAD") != NULL)
|
|
pthread_join (thr_idle, &val);
|
|
|
|
return 0;
|
|
}
|