home *** CD-ROM | disk | FTP | other *** search
/ DOS Wares / doswares.zip / doswares / DATABASE / DBASE5 / SYSTEM.CA9 / TMEMORY.PRG < prev   
Encoding:
Text File  |  1994-06-24  |  1.1 KB  |  18 lines

  1. * --------------------------------------------------
  2. * Display the amount of memory available in various 
  3. * categories. Use the dbasedos.ini file to make
  4. * changes to the memory configuration used by dBASE.
  5. * --------------------------------------------------
  6. ? " -- tmemory: Current memory configuration --"
  7. ? "running dBASE version:", version(0)
  8. ? "DATE: ", date()
  9. ? "memory(0):total unused memory available to dBASE          ", memory() ,"K"
  10. ? "memory(1):memory committed to dBASE but currently not used", memory(1),"K"
  11. ? "memory(2):low DOS memory available                        ", memory(2),"K"
  12. ? "memory(3):extended memory not currently used by dBASE     ", memory(3),"K"
  13. ? "memory(4):virtual address space (0 if VMM not active)     ", memory(4),"K"
  14. ? "memory(5):physical memory used by dBASE VMM               ", memory(5),"K"
  15. ? "memory(6):file buffer cache                               ", memory(6),"K"
  16. ? "memory(7):VMM swap file size                              ", memory(7),"K"
  17. ? "memory(8):largest contiguous memory chunk                 ", memory(8),"K"
  18.