Mercurial > emacs
changeset 15885:67d9f8e91688
(unexec): Copy the .got section.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 19 Aug 1996 16:53:35 +0000 |
parents | ea80dae13b2f |
children | 4877d1aa80ad |
files | src/unexalpha.c |
diffstat | 1 files changed, 17 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/unexalpha.c Mon Aug 19 16:31:27 1996 +0000 +++ b/src/unexalpha.c Mon Aug 19 16:53:35 1996 +0000 @@ -266,6 +266,8 @@ #ifdef _GOT if (got_section != NULL) { + bcopy (got_section, buffer, sizeof (struct scnhdr)); + got_section->s_vaddr = vaddr; got_section->s_paddr = vaddr; got_section->s_size = 0; @@ -292,6 +294,21 @@ WRITE (new, (char *)DATA_START, nhdr.aout.dsize, "writing data section to %s", new_name); +#ifdef _GOT +#define old_got_section ((struct scnhdr *)buffer) + + if (got_section != NULL) + { + SEEK (new, old_got_section->s_scnptr, + "seeking to start of got_section in %s", new_name); + WRITE (new, oldptr + old_got_section->s_scnptr, old_got_section->s_size, + "writing new got_section of %s", new_name); + SEEK (new, nhdr.aout.tsize + nhdr.aout.dsize, + "seeking to end of data section of %s", new_name); + } + +#undef old_got_section +#endif /* * Construct new symbol table header