This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Memory map DTD added to the web site


I've committed the attached so that this URL, in the documentation,
works:
  http://sourceware.org/gdb/gdb-memory-map.dtd

Giving DTDs (document type descriptions) well known URLs makes life easier
for e.g. validation tools.

-- 
Daniel Jacobowitz
CodeSourcery

Index: gdb-memory-map.dtd
===================================================================
RCS file: gdb-memory-map.dtd
diff -N gdb-memory-map.dtd
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gdb-memory-map.dtd	21 Sep 2006 14:08:48 -0000
@@ -0,0 +1,18 @@
+<!-- ................................................... -->
+<!-- Memory Map XML DTD ................................ -->
+<!-- File: memory-map.dtd .............................. -->
+<!-- .................................... .............. -->
+<!-- memory-map.dtd -->
+<!-- memory-map: Root element with versioning -->
+<!ELEMENT memory-map (memory | property)>
+<!ATTLIST memory-map    version CDATA   #FIXED  "1.0.0">
+<!ELEMENT memory (property)>
+<!-- memory: Specifies a memory region,
+             and its type, or device. -->
+<!ATTLIST memory        type    CDATA   #REQUIRED
+                        start   CDATA   #REQUIRED
+                        length  CDATA   #REQUIRED
+                        device  CDATA   #IMPLIED>
+<!-- property: Generic attribute tag -->
+<!ELEMENT property (#PCDATA | property)*>
+<!ATTLIST property      name    CDATA   #REQUIRED>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]