10Sstevel@tonic-gate/* Low level support for x86 (i386 and x86-64).
20Sstevel@tonic-gate
30Sstevel@tonic-gate   Copyright (C) 2009-2023 Free Software Foundation, Inc.
40Sstevel@tonic-gate
53446Smrj   This file is part of GDB.
63446Smrj
70Sstevel@tonic-gate   This program is free software; you can redistribute it and/or modify
80Sstevel@tonic-gate   it under the terms of the GNU General Public License as published by
90Sstevel@tonic-gate   the Free Software Foundation; either version 3 of the License, or
100Sstevel@tonic-gate   (at your option) any later version.
110Sstevel@tonic-gate
120Sstevel@tonic-gate   This program is distributed in the hope that it will be useful,
130Sstevel@tonic-gate   but WITHOUT ANY WARRANTY; without even the implied warranty of
140Sstevel@tonic-gate   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
150Sstevel@tonic-gate   GNU General Public License for more details.
160Sstevel@tonic-gate
170Sstevel@tonic-gate   You should have received a copy of the GNU General Public License
180Sstevel@tonic-gate   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
190Sstevel@tonic-gate
200Sstevel@tonic-gate#ifndef GDBSERVER_X86_LOW_H
213446Smrj#define GDBSERVER_X86_LOW_H
220Sstevel@tonic-gate
233446Smrj#include "nat/x86-dregs.h"
240Sstevel@tonic-gate
250Sstevel@tonic-gate/* Initialize STATE.  */
260Sstevel@tonic-gateextern void x86_low_init_dregs (struct x86_debug_reg_state *state);
270Sstevel@tonic-gate
280Sstevel@tonic-gate#endif /* GDBSERVER_X86_LOW_H */
290Sstevel@tonic-gate