diff options
| author | Richard M. Stallman | 1994-10-26 04:43:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-26 04:43:33 +0000 |
| commit | f34e2e18169f943e4380de6899c6e8623dd84d43 (patch) | |
| tree | 58bcc5e65781565d207aa660e86db31f17fc403e /src | |
| parent | 1b15043ec25c13fd30a9862bdab7415bc8fb8a04 (diff) | |
| download | emacs-f34e2e18169f943e4380de6899c6e8623dd84d43.tar.gz emacs-f34e2e18169f943e4380de6899c6e8623dd84d43.zip | |
Comment changes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexec.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/unexec.c b/src/unexec.c index 652aa70e242..4b853e5b7ee 100644 --- a/src/unexec.c +++ b/src/unexec.c | |||
| @@ -200,9 +200,8 @@ struct aouthdr | |||
| 200 | #endif /* not MSDOS */ | 200 | #endif /* not MSDOS */ |
| 201 | #endif | 201 | #endif |
| 202 | 202 | ||
| 203 | /* Define getpagesize () if the system does not. | 203 | /* Define getpagesize if the system does not. |
| 204 | Note that this may depend on symbols defined in a.out.h | 204 | Note that this may depend on symbols defined in a.out.h. */ |
| 205 | */ | ||
| 206 | #include "getpagesize.h" | 205 | #include "getpagesize.h" |
| 207 | 206 | ||
| 208 | #ifndef makedev /* Try to detect types.h already loaded */ | 207 | #ifndef makedev /* Try to detect types.h already loaded */ |
| @@ -896,7 +895,7 @@ copy_text_and_data (new, a_out) | |||
| 896 | 895 | ||
| 897 | /* Some machines count the header as part of the text segment. | 896 | /* Some machines count the header as part of the text segment. |
| 898 | That is to say, the header appears in core | 897 | That is to say, the header appears in core |
| 899 | just before the address that start_of_text () returns. | 898 | just before the address that start_of_text returns. |
| 900 | For them, N_TXTOFF is the place where the header goes. | 899 | For them, N_TXTOFF is the place where the header goes. |
| 901 | We must adjust the seek to the place after the header. | 900 | We must adjust the seek to the place after the header. |
| 902 | Note that at this point hdr.a_text does *not* count | 901 | Note that at this point hdr.a_text does *not* count |
| @@ -912,7 +911,7 @@ copy_text_and_data (new, a_out) | |||
| 912 | 911 | ||
| 913 | /* Acorn's RISC-iX has a wacky way of initialising the position of the heap. | 912 | /* Acorn's RISC-iX has a wacky way of initialising the position of the heap. |
| 914 | * There is a little table in crt0.o that is filled at link time with | 913 | * There is a little table in crt0.o that is filled at link time with |
| 915 | * the min and current brk positions, among other things. When start() | 914 | * the min and current brk positions, among other things. When start |
| 916 | * runs, it copies the table to where these parameters live during | 915 | * runs, it copies the table to where these parameters live during |
| 917 | * execution. This data is in text space, so it cannot be modified here | 916 | * execution. This data is in text space, so it cannot be modified here |
| 918 | * before saving the executable, so the data is written manually. In | 917 | * before saving the executable, so the data is written manually. In |