]> sourceware.org Git - newlib-cygwin.git/commitdiff
bfd/
authorTristan Gingold <gingold@adacore.com>
Mon, 3 May 2010 12:16:46 +0000 (12:16 +0000)
committerTristan Gingold <gingold@adacore.com>
Mon, 3 May 2010 12:16:46 +0000 (12:16 +0000)
2010-05-03  Tristan Gingold  <gingold@adacore.com>

* vms-alpha.c: Add comments.
(struct vms_private_data_struct): Remove image_autoextend field.
(dst_check_allocation): Removed.
(image_write): Remove call to dst_check_allocation.
(vms_slurp_debug): Do not set image_autoextend.  Adjust section
size.
(_bfd_vms_slurp_object_records): Remove useless new_type variable.
(alpha_vms_write_exec): Use dst_section to get the dst section.
Write the dmt section.
(evax_bfd_print_image): Also print the dst size in hexa.  Fix typo.
(alpha_vms_read_sections_content): Do not set image_autoextend.

include/vms/
2010-05-03  Tristan Gingold  <gingold@adacore.com>

* dmt.h: Improve comments.

include/vms/ChangeLog
include/vms/dmt.h

index 823520f220be48f1b22eb5e9a32ff8ec7585927c..edd78fe0a832758ba683d7288006b1298af4b063 100644 (file)
@@ -1,3 +1,7 @@
+2010-05-03  Tristan Gingold  <gingold@adacore.com>
+
+       * dmt.h: Improve comments.
+
 2010-04-30  Tristan Gingold  <gingold@adacore.com>
 
        * lbr.h (struct vms_kbn): New structure.
index f2f4e0d5dc8986e2290c336d5c91f2d6deb07a64..f2aad6e99be5471457cbfb790fd3c5cbad4ebfbd 100644 (file)
 
 struct vms_dmt_header
 {
-  /* Address of the module.  */
+  /* Offset in the DST of the module.  */
   unsigned char modbeg[4];
 
-  /* Size of the module.  */
+  /* Size of the DST chunk for this module.  */
   unsigned char size[4];
 
   /* Number of psect for this module.  */
@@ -39,7 +39,10 @@ struct vms_dmt_header
 
 struct vms_dmt_psect
 {
+  /* Address of the psect.  */
   unsigned char start[4];
+
+  /* Length of the psect.  */
   unsigned char length[4];
 };
 #endif /* _VMS_DMT_H */
This page took 0.033358 seconds and 5 git commands to generate.