home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 January: Mac OS SDK / Dev.CD Jan 96 SDK / Dev.CD Jan 96 SDK1.toast / Development Kits (Disc 1) / OpenTransport / Open Transport 1.0.5b4 / Open Transport SDK / Open Tpt Module Developer / Includes / strstat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-24  |  550 b   |  22 lines  |  [TEXT/MPS ]

  1. /** Copyright (c) 1993  Mentat Inc.
  2.  ** strstat.h 4.1, last change 31 Aug 1993
  3.  **/
  4.  
  5.  
  6. #ifndef _STRSTAT_
  7. #define _STRSTAT_
  8.  
  9.  
  10. /* module statistics structure */
  11. struct    module_stat {
  12.     long    ms_pcnt;    /* count of calls to put proc */
  13.     long    ms_scnt;    /* count of calls to service proc */
  14.     long    ms_ocnt;    /* count of calls to open proc */
  15.     long    ms_ccnt;    /* count of calls to close proc */
  16.     long    ms_acnt;    /* count of calls to admin proc */
  17.     char*    ms_xptr;    /* pointer to private statistics */
  18.     short    ms_xsize;    /* length of private statistics buffer */
  19. };
  20.  
  21. #endif
  22.