]>
Commit | Line | Data |
---|---|---|
ce0787ef FF |
1 | /* Common declarations for the GNU Hurd |
2 | ||
3 | Copyright (C) 1995 Free Software Foundation, Inc. | |
4 | ||
5 | Written by Miles Bader <[email protected]> | |
6 | ||
7 | The GNU Hurd is free software; you can redistribute it and/or | |
8 | modify it under the terms of the GNU General Public License as | |
9 | published by the Free Software Foundation; either version 2, or (at | |
10 | your option) any later version. | |
11 | ||
12 | The GNU Hurd is distributed in the hope that it will be useful, but | |
13 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | ||
21 | #ifndef __NM_GNU_H__ | |
22 | #define __NM_GNU_H__ | |
23 | ||
24 | #include <unistd.h> | |
25 | #include <mach.h> | |
26 | #include <mach/exception.h> | |
27 | ||
28 | #include "solib.h" /* Support for shared libraries. */ | |
29 | ||
30 | #undef target_pid_to_str | |
31 | #define target_pid_to_str(pid) gnu_target_pid_to_str(pid) | |
32 | extern char *gnu_target_pid_to_str (int pid); | |
33 | ||
34 | /* Before storing, we need to read all the registers. */ | |
35 | #define CHILD_PREPARE_TO_STORE() read_register_bytes (0, NULL, REGISTER_BYTES) | |
36 | ||
37 | /* Don't do wait_for_inferior on attach. */ | |
38 | #define ATTACH_NO_WAIT | |
39 | ||
40 | /* Use SVR4 style shared library support */ | |
41 | #define SVR4_SHARED_LIBS | |
42 | #define NO_CORE_OPS | |
43 | ||
44 | #define MAINTENANCE_CMDS 1 | |
45 | ||
46 | #endif /* __NM_GNU_H__ */ |