diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ld.texinfo | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 25bfcd4..03d2604 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2007-07-05 Danny Smith <dannysmith@users.sourceforge.net> + + * ld.texinfo (--heap): Replace 'amount' with 'number of bytes'. + (--stack): Likewise. + 2007-07-03 Matthias Klose <doko@ubuntu.com> * emultempl/spuelf.em (base_name): Correct backslash quoting. diff --git a/ld/ld.texinfo b/ld/ld.texinfo index 71273f4..cd33323 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -2073,8 +2073,8 @@ file offsets which are multiples of this number. This defaults to @kindex --heap @item --heap @var{reserve} @itemx --heap @var{reserve},@var{commit} -Specify the amount of memory to reserve (and optionally commit) to be -used as heap for this program. The default is 1Mb reserved, 4K +Specify the number of bytes of memory to reserve (and optionally commit) +to be used as heap for this program. The default is 1Mb reserved, 4K committed. [This option is specific to the i386 PE targeted port of the linker] @@ -2343,8 +2343,8 @@ addresses which are a multiple of this number. Defaults to 0x1000. @kindex --stack @item --stack @var{reserve} @itemx --stack @var{reserve},@var{commit} -Specify the amount of memory to reserve (and optionally commit) to be -used as stack for this program. The default is 2Mb reserved, 4K +Specify the number of bytes of memory to reserve (and optionally commit) +to be used as stack for this program. The default is 2Mb reserved, 4K committed. [This option is specific to the i386 PE targeted port of the linker] |