home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / LK_V1.06.LHA / LK V1.06 / HELP / memory.hlp < prev    next >
Encoding:
INI File  |  1994-11-01  |  1.2 KB  |  29 lines

  1. [LANGUAGE english; PARENT index; PAGE 12]
  2. [C;6;B]        Memory Management
  3. [J;1;N]
  4.   To make it quick, lk allocates large buffers of memory even \
  5. a very small (1 byte!) amount of memory is required. Then each \
  6. new little structure is allocated inside the last large \
  7. buffer taken.
  8.   With small program, no modification is necessairy. But if \
  9. you are working with really large program or large libraries, \
  10. you should change the large buffer sizes. This is done with \
  11. one of the following instruction:
  12. [C;3;LINK hunk]        HUNK
  13. [1]    (Number of hunks, default 50)
  14. [3;LINK symbol]        SYMBOL
  15. [1]    (Total of symbols names, default 16Kb)
  16. [3;LINK reloc]        RELOC
  17. [1]    (Number of reloc structure, default 1000)
  18. [J]
  19.   lk has a low level memory allocation routine which enables \
  20. it to display a requester when a memory allocation fails. \
  21. This will enable you to ends some programs, if you have some \
  22. running in the background, and retry the lk allocation.
  23.   If you click on 'Cancel' button, lk will stop and return the \
  24. main to user.
  25.  
  26.   If a memory error happend very often on your system, you may \
  27. suppress the QuickDOS.library or use the following instruction:
  28. [C;3;LINK qdstop]    QDSTOP
  29.