]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.multi/multi-arch-exec.c
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.multi / multi-arch-exec.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3 Copyright 2012-2018 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <unistd.h>
21 #include <limits.h>
22 #include <string.h>
23 #include <pthread.h>
24
25 #define NUM_THREADS 1
26
27 static pthread_barrier_t barrier;
28
29 static void *
30 thread_start (void *arg)
31 {
32 pthread_barrier_wait (&barrier);
33
34 while (1)
35 sleep (1);
36 return NULL;
37 }
38
39 static void
40 all_started (void)
41 {
42 }
43
44 int
45 main (int argc, char ** argv)
46 {
47 char prog[PATH_MAX];
48 pthread_t thread;
49 int len;
50
51 strcpy (prog, argv[0]);
52 len = strlen (prog);
53 /* Replace "multi-arch-exec" with "multi-arch-exec-hello". */
54 memcpy (prog + len - 15, "multi-arch-exec-hello", 21);
55 prog[len + 6] = 0;
56
57 pthread_barrier_init (&barrier, NULL, NUM_THREADS + 1);
58 pthread_create (&thread, NULL, thread_start, NULL);
59
60 pthread_barrier_wait (&barrier);
61 all_started ();
62
63 execl (prog,
64 prog,
65 (char *) NULL);
66 perror ("execl failed");
67 exit (1);
68 }