| OLD | NEW |
| 1 /* Linux-specific PROCFS manipulation routines. | 1 /* Native-dependent code for AMD64 BSD's. |
| 2 |
| 2 Copyright (C) 2011-2012 Free Software Foundation, Inc. | 3 Copyright (C) 2011-2012 Free Software Foundation, Inc. |
| 3 | 4 |
| 4 This file is part of GDB. | 5 This file is part of GDB. |
| 5 | 6 |
| 6 This program is free software; you can redistribute it and/or modify | 7 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 it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation; either version 3 of the License, or | 9 the Free Software Foundation; either version 3 of the License, or |
| 9 (at your option) any later version. | 10 (at your option) any later version. |
| 10 | 11 |
| 11 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 GNU General Public License for more details. | 15 GNU General Public License for more details. |
| 15 | 16 |
| 16 You should have received a copy of the GNU General Public License | 17 You should have received a copy of the GNU General Public License |
| 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 18 | 19 |
| 19 #ifndef COMMON_LINUX_PROCFS_H | 20 #ifndef AMD64BSD_NAT_H |
| 20 #define COMMON_LINUX_PROCFS_H | 21 #define AMD64BSD_NAT_H |
| 21 | 22 |
| 22 #include <unistd.h> | 23 /* Low level amd64 debug register functions. */ |
| 23 | 24 |
| 24 /* Return the TGID of LWPID from /proc/pid/status. Returns -1 if not | 25 extern void amd64bsd_dr_set_control (unsigned long control); |
| 25 found. */ | |
| 26 | 26 |
| 27 extern int linux_proc_get_tgid (int lwpid); | 27 extern void amd64bsd_dr_set_addr (int regnum, CORE_ADDR addr); |
| 28 | 28 |
| 29 #endif /* COMMON_LINUX_PROCFS_H */ | 29 extern CORE_ADDR amd64bsd_dr_get_addr (int regnum); |
| 30 |
| 31 extern unsigned long amd64bsd_dr_get_status (void); |
| 32 |
| 33 extern unsigned long amd64bsd_dr_get_control (void); |
| 34 |
| 35 #endif /* amd64bsd-nat.h */ |
| OLD | NEW |