* elf32-sparc.c (_bfd_sparc_elf_howto_table): Fix dst_mask for
[deliverable/binutils-gdb.git] / gdb / memattr.h
index 1af276b5169f76a38389ec9b0854046a7d4af898..8643a23cec86b5e51e64400089aab8f2f05f40b3 100644 (file)
@@ -1,4 +1,23 @@
-/* memattr.h */
+/* Memory attributes support, for GDB.
+   Copyright 2001 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
 #ifndef MEMATTR_H
 #define MEMATTR_H
 
@@ -6,7 +25,7 @@ enum mem_access_mode
 {
   MEM_RW,                      /* read/write */
   MEM_RO,                      /* read only */
-  MEM_WO,                      /* write only */
+  MEM_WO                       /* write only */
 };
 
 enum mem_access_width
@@ -60,8 +79,8 @@ struct mem_region
   /* Item number of this memory region. */
   int number;
 
-  /* Status of this memory region (enabled or disabled) */
-  int status;
+  /* Status of this memory region (enabled if non-zero, otherwise disabled) */
+  int enabled_p;
 
   /* Attributes for this region */
   struct mem_attrib attrib;
This page took 0.023763 seconds and 4 git commands to generate.