This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
[PATCH] Protect gregset.h against multiple inclusion.
- To: gdb-patches at sourceware dot cygnus dot com
- Subject: [PATCH] Protect gregset.h against multiple inclusion.
- From: Mark Kettenis <kettenis at wins dot uva dot nl>
- Date: Sun, 27 Aug 2000 23:40:57 +0200
I checked in a patch that protects gregset.h against multiple
inclusion since it is "obviously correct". I need this for my Linux
threads work.
Oh yeah, I made use of the opportunity to make some gratitious
formatting changes such that things don't line up anynmore :-).
Mark
2000-08-27 Mark Kettenis <kettenis@gnu.org>
* gregset.h: Protect against multiple inclusion. Remove some
redundant spaces.
Index: gregset.h
===================================================================
RCS file: /cvs/src/src/gdb/gregset.h,v
retrieving revision 1.1
diff -u -p -r1.1 gregset.h
--- gregset.h 2000/05/26 23:22:41 1.1
+++ gregset.h 2000/08/27 21:35:41
@@ -1,5 +1,5 @@
/* Interface for functions using gregset and fpregset types.
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright 2000 Free Software Foundation, Inc.
This file is part of GDB.
@@ -18,6 +18,9 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+#ifndef GREGSET_H
+#define GREGSET_H
+
#ifndef GDB_GREGSET_T
#define GDB_GREGSET_T gregset_t
#endif
@@ -26,7 +29,7 @@
#define GDB_FPREGSET_T fpregset_t
#endif
-typedef GDB_GREGSET_T gdb_gregset_t;
+typedef GDB_GREGSET_T gdb_gregset_t;
typedef GDB_FPREGSET_T gdb_fpregset_t;
/* A gregset is a data structure supplied by the native OS containing
@@ -36,15 +39,17 @@ typedef GDB_FPREGSET_T gdb_fpregset_t;
structures were originally a part of the /proc interface, but have
been borrowed or copied by other GDB targets, eg. Linux. */
-/* Copy register values from the native target gregset / fpregset
+/* Copy register values from the native target gregset/fpregset
into GDB's internal register cache. */
-extern void supply_gregset (gdb_gregset_t *gregs);
+extern void supply_gregset (gdb_gregset_t *gregs);
extern void supply_fpregset (gdb_fpregset_t *fpregs);
/* Copy register values from GDB's register cache into
- the native target gregset / fpregset. If regno is -1,
+ the native target gregset/fpregset. If regno is -1,
copy all the registers. */
+
+extern void fill_gregset (gdb_gregset_t *gregs, int regno);
+extern void fill_fpregset (gdb_fpregset_t *fpregs, int regno);
-extern void fill_gregset (gdb_gregset_t *gregs, int regno);
-extern void fill_fpregset (gdb_fpregset_t *fpregs, int regno);
+#endif