run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / config / i386 / nm-i386gnu.h
1 /* Native-dependent definitions for Intel 386 running the GNU Hurd
2 Copyright 1994, 1995, 1996, 2002, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU 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, see <http://www.gnu.org/licenses/>. */
19
20 #ifndef NM_I386GNU_H
21 #define NM_I386GNU_H
22
23 #include <unistd.h>
24 #include <mach.h>
25 #include <mach/exception.h>
26 #include "regcache.h"
27
28 extern char *gnu_target_pid_to_str (int pid);
29
30 /* Thread flavors used in re-setting the T bit. */
31 #define THREAD_STATE_FLAVOR i386_REGS_SEGS_STATE
32 #define THREAD_STATE_SIZE i386_THREAD_STATE_COUNT
33 #define THREAD_STATE_SET_TRACED(state) \
34 ((struct i386_thread_state *) (state))->efl |= 0x100
35 #define THREAD_STATE_CLEAR_TRACED(state) \
36 ((((struct i386_thread_state *) (state))->efl &= ~0x100), 1)
37
38 #endif /* nm-i386gnu.h */
This page took 0.031201 seconds and 5 git commands to generate.