xref: /netbsd-src/external/gpl3/gdb/dist/gdbserver/x86-low.h (revision f1c2b495c8d0ed769f039187bdd4f963026e012b)
18dffb485Schristos /* Low level support for x86 (i386 and x86-64).
28dffb485Schristos 
3*f1c2b495Schristos    Copyright (C) 2009-2024 Free Software Foundation, Inc.
48dffb485Schristos 
58dffb485Schristos    This file is part of GDB.
68dffb485Schristos 
78dffb485Schristos    This program is free software; you can redistribute it and/or modify
88dffb485Schristos    it under the terms of the GNU General Public License as published by
98dffb485Schristos    the Free Software Foundation; either version 3 of the License, or
108dffb485Schristos    (at your option) any later version.
118dffb485Schristos 
128dffb485Schristos    This program is distributed in the hope that it will be useful,
138dffb485Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
148dffb485Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
158dffb485Schristos    GNU General Public License for more details.
168dffb485Schristos 
178dffb485Schristos    You should have received a copy of the GNU General Public License
188dffb485Schristos    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
198dffb485Schristos 
208dffb485Schristos #ifndef GDBSERVER_X86_LOW_H
218dffb485Schristos #define GDBSERVER_X86_LOW_H
228dffb485Schristos 
238dffb485Schristos #include "nat/x86-dregs.h"
248dffb485Schristos 
258dffb485Schristos /* Initialize STATE.  */
268dffb485Schristos extern void x86_low_init_dregs (struct x86_debug_reg_state *state);
278dffb485Schristos 
288dffb485Schristos #endif /* GDBSERVER_X86_LOW_H */
29