Skip to content
Snippets Groups Projects
Commit 8247a95c authored by rtoy's avatar rtoy
Browse files

More comment cleanups.

parent ebdda997
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
Above changes put into main CVS branch. 05-Jul-2007. Above changes put into main CVS branch. 05-Jul-2007.
$Id: elf.c,v 1.28 2010/08/02 21:45:36 rtoy Exp $ $Id: elf.c,v 1.29 2010/08/02 21:59:43 rtoy Exp $
*/ */
#include <stdio.h> #include <stdio.h>
...@@ -466,17 +466,18 @@ map_core_sections(const char *exec_name) ...@@ -466,17 +466,18 @@ map_core_sections(const char *exec_name)
if (!strncmp(nambuf, section_names[j], 6)) { if (!strncmp(nambuf, section_names[j], 6)) {
os_vm_address_t addr; os_vm_address_t addr;
/* /*
* On Solaris, the section header sets the addr * Found a core section. Map it!
* field to 0 because the linker script says the
* sections are NOTE sections. Hence, we need to
* look up the section addresses ourselves.
* *
* For other systems, we don't care what the * Although the segment may contain the correct
* address is. We infer the address from the * address for the start of the segment, we don't
* segment name. * care. We infer the address from the segment
* name. (The names better be unique!!!!) This
* approach allows for a possibly simpler linking
* operation because we don't have to figure out
* how to get the linker to give segments the
* correct address.
*/ */
addr = section_addr[j]; addr = section_addr[j];
/* Found a core section. Map it! */
if ((os_vm_address_t) os_map(exec_fd, sh.sh_offset, if ((os_vm_address_t) os_map(exec_fd, sh.sh_offset,
addr, sh.sh_size) addr, sh.sh_size)
== (os_vm_address_t) -1) { == (os_vm_address_t) -1) {
...@@ -484,20 +485,20 @@ map_core_sections(const char *exec_name) ...@@ -484,20 +485,20 @@ map_core_sections(const char *exec_name)
exit(-1); exit(-1);
} }
switch(j) { switch(j) {
case 0: /* Dynamic space. */ case 0: /* Dynamic space. */
/* Dynamic space variables are set in lisp.c. */ /* Dynamic space variables are set in lisp.c. */
image_dynamic_space_size = sh.sh_size; image_dynamic_space_size = sh.sh_size;
break; break;
case 1: /* Static space. */ case 1: /* Static space. */
image_static_space_size = sh.sh_size; image_static_space_size = sh.sh_size;
break; break;
case 2: /* Read-only space. */ case 2: /* Read-only space. */
image_read_only_space_size = sh.sh_size; image_read_only_space_size = sh.sh_size;
break; break;
default: default:
/* Should never get here. */ /* Should never get here. */
abort(); abort();
break; break;
} }
sections_remaining--; sections_remaining--;
......
/* /*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-o.c,v 1.6 2010/08/02 21:45:36 rtoy Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-o.c,v 1.7 2010/08/02 21:59:43 rtoy Rel $
* *
* This code was written by Raymond Toy as part of CMU Common Lisp and * This code was written by Raymond Toy as part of CMU Common Lisp and
* has been placed in the public domain. * has been placed in the public domain.
...@@ -413,11 +413,17 @@ map_core_sections(const char *exec_name) ...@@ -413,11 +413,17 @@ map_core_sections(const char *exec_name)
#endif #endif
if (lc.cmd == LC_SEGMENT) { if (lc.cmd == LC_SEGMENT) {
/* Read the rest of the command, which is a segment command. */ /*
* Got a segment command, so read the rest of the command so
* we can see if it's the segment for one of our Lisp
* spaces.
*/
#ifdef DEBUG_MACH_O #ifdef DEBUG_MACH_O
fprintf(stderr, "Reading next %ld bytes for SEGMENT\n", sizeof(sc) - sizeof(lc)); fprintf(stderr, "Reading next %ld bytes for SEGMENT\n", sizeof(sc) - sizeof(lc));
#endif #endif
eread(exec_fd, &sc.segname, sizeof(sc) - sizeof(lc), __func__); eread(exec_fd, &sc.segname, sizeof(sc) - sizeof(lc), __func__);
#ifdef DEBUG_MACH_O #ifdef DEBUG_MACH_O
fprintf(stderr, "LC_SEGMENT: name = %s\n", sc.segname); fprintf(stderr, "LC_SEGMENT: name = %s\n", sc.segname);
#endif #endif
...@@ -475,7 +481,7 @@ map_core_sections(const char *exec_name) ...@@ -475,7 +481,7 @@ map_core_sections(const char *exec_name)
#endif #endif
elseek(exec_fd, lc.cmdsize - sizeof(sc), SEEK_CUR, __func__); elseek(exec_fd, lc.cmdsize - sizeof(sc), SEEK_CUR, __func__);
} else { } else {
/* Seek to the next command */ /* Not a segment command, so seek to the next command */
#ifdef DEBUG_MACH_O #ifdef DEBUG_MACH_O
fprintf(stderr, "Seeking by %ld bytes\n", lc.cmdsize - sizeof(lc)); fprintf(stderr, "Seeking by %ld bytes\n", lc.cmdsize - sizeof(lc));
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment