home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / ccs / lib / fur / log.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-19  |  932 b   |  32 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ident    "@(#)fur:common/cmd/fur/log.h    1.1.2.1"
  12. #ifndef _LOG_H
  13. #define _LOG_H
  14.  
  15. struct flowcount {
  16.     unsigned long callcount;
  17.     unsigned long firstcount;
  18.     unsigned long secondcount;
  19. };
  20. struct blockcount {
  21.     unsigned long callcount;
  22.     unsigned long firstblock;
  23.     unsigned long firstcount;
  24.     unsigned long secondcount;
  25. };
  26. struct callcount {
  27.     void *callee;
  28.     void *caller;
  29.     unsigned long count;
  30. };
  31. #endif
  32.