home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / IRIT / IRITLIBS.ZIP / ALLOC15.DOC next >
Encoding:
Text File  |  1990-05-05  |  1.1 KB  |  30 lines

  1. ALLOC15.LIB was constructed from the dynamic allocation routines of Turbo C
  2. Ver. 1.5. Turbo C version 1.5 size overhead per allocation is smaller than of
  3. Turbo C 2.0 but is slower. If you prefer speed use Turbo C 2.0 routines. If you
  4. prefer space, use Turbo C 1.5 routines, by constructing the library.
  5. In order to construct the library, 4 routines should be extracted fro cl.lib in
  6. Turbo C ver. 1.5: malloc, free, fmalloc and ffree using tlib, from the cl.lib
  7. library, and combined together, again using tlib, to form the alloc15.lib 
  8. library.
  9. Warnings for duplicate labels in alloc15.lib and cl.lib will probably be issued
  10. and should be ignored.
  11. As described above, you dont have to you it. If you decide not to, simply
  12. delete alloc15.lib from your '.prj' file, and the regular malloc functions
  13. (from cl.lib) will be linked instead.
  14.  
  15. The listing of the library as result from tlib follows:
  16.  
  17. Publics by module
  18.  
  19. FFREE       size = 574
  20.     _farfree                        
  21.  
  22. FMALLOC     size = 377
  23.     __Allocp                          _farmalloc
  24.  
  25. FREE        size = 18
  26.     _free                           
  27.  
  28. MALLOC      size = 19
  29.     _malloc                         
  30.