* ppcbug-rom.c (ppcbug_regnames[]): Make array size implicit.
[deliverable/binutils-gdb.git] / gdb / config / powerpc / nm-linux.h
1 /* IBM PowerPC native-dependent macros for GDB, the GNU debugger.
2 Copyright 1995 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #ifndef NM_LINUX_H
21
22 #include "nm-linux.h"
23
24 #define NM_LINUX_H
25
26 /* Return sizeof user struct to callers in less machine dependent routines */
27
28 #define KERNEL_U_SIZE kernel_u_size()
29 extern int kernel_u_size (void);
30
31 /* Tell gdb that we can attach and detach other processes */
32 #define ATTACH_DETACH
33
34 #define U_REGS_OFFSET 0
35
36 #define REGISTER_U_ADDR(addr, blockend, regno) \
37 (addr) = ppc_register_u_addr ((blockend),(regno));
38
39 /* No <sys/reg.h> */
40
41 #define NO_SYS_REG_H
42
43 #ifdef HAVE_LINK_H
44 #include "solib.h" /* Support for shared libraries. */
45 #define SVR4_SHARED_LIBS
46 #endif
47
48 /* Support for Linuxthreads. */
49
50 #ifdef __STDC__
51 struct objfile;
52 #endif
53
54 extern void linuxthreads_new_objfile (struct objfile *objfile);
55 #define target_new_objfile(OBJFILE) linuxthreads_new_objfile (OBJFILE)
56
57 extern char *linuxthreads_pid_to_str (int pid);
58 #define target_pid_to_str(PID) linuxthreads_pid_to_str (PID)
59
60 extern int linuxthreads_prepare_to_proceed (int step);
61 #define PREPARE_TO_PROCEED(select_it) linuxthreads_prepare_to_proceed (1)
62
63
64 #endif /* #ifndef NM_LINUX_H */
This page took 0.034106 seconds and 4 git commands to generate.