PARAMS removal.
[deliverable/binutils-gdb.git] / gdb / config / powerpc / nm-linux.h
CommitLineData
c877c8e6
KB
1/* IBM PowerPC native-dependent macros for GDB, the GNU debugger.
2 Copyright 1995 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#ifndef NM_LINUX_H
863e0fe4
AO
21
22#include "nm-linux.h"
23
c877c8e6
KB
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()
a14ed312 29extern int kernel_u_size (void);
c877c8e6
KB
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__
51struct objfile;
52#endif
53
a14ed312 54extern void linuxthreads_new_objfile (struct objfile *objfile);
c877c8e6
KB
55#define target_new_objfile(OBJFILE) linuxthreads_new_objfile (OBJFILE)
56
a14ed312 57extern char *linuxthreads_pid_to_str (int pid);
c877c8e6
KB
58#define target_pid_to_str(PID) linuxthreads_pid_to_str (PID)
59
a14ed312 60extern int linuxthreads_prepare_to_proceed (int step);
c877c8e6
KB
61#define PREPARE_TO_PROCEED(select_it) linuxthreads_prepare_to_proceed (1)
62
63
64#endif /* #ifndef NM_LINUX_H */
This page took 0.038647 seconds and 4 git commands to generate.