home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / cli / dta / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-23  |  1.4 KB  |  66 lines

  1. .name
  2. DTA
  3. .type
  4. OS Utility
  5. .short
  6. DataTransferAnalysis (Drive Speed)
  7. .description
  8.  
  9.      The following is an example of some of the useful information DTA
  10.      will display for you.    
  11.  
  12.        CPU: 68040/68882
  13.  
  14.        Volume: DH1 (DCFFS)
  15.  
  16.        Processing file "dl:LionKing.lha".
  17.  
  18.        Read 946054 bytes / 923.9K in 0 seconds and ~432129 microseconds.
  19.  
  20.        Data Transfer Analysis (DTA) = 2.1M/second (2189286 bytes/second).
  21.  
  22.      The idea behind this very simple/crude program is to give you an
  23.      average idea of how well your machine/controller/drive are performing
  24.      together.  The whole "analysis" depends on the number of buffers and
  25.      what type of memory they are in, your drive/controller speed, your
  26.      system's CPU load, the maxtransfer and DMA settings, file system, ...
  27.  
  28.      This program just samples the time, reads a LARGE file, and samples
  29.      the time again...
  30. .version
  31. 1.00
  32. .date
  33. 1994.11.18
  34. .author
  35. Trevor Andrews
  36. .distribution
  37. Copyrighted but Freely Redistributable
  38. .email
  39. tna@expert.cc.purdue.edu
  40. .address
  41. Imagine Software, Inc.
  42. 1218 South 5th Street
  43. Lafayette, IN  47905-1716
  44. .docs
  45. PS.doc
  46. .described-by
  47. Dan Fish (daf@daffy.amigalib.com)
  48. .submittal
  49. Submitted electronically directly by the author.
  50. .aminet-dir
  51. util/cli
  52. .execute
  53. set choice `RequestChoice "DTA" "Please select an option" "View Doc" "Run Program" "Cancel"`
  54.  
  55. if $choice EQ "0"
  56.   quit 5
  57. endif
  58.  
  59. if $choice EQ "1"
  60.   MetaTool DTA.doc TEXT
  61. endif
  62.  
  63. if $choice EQ "2"
  64.   newcli
  65. endif
  66.