home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved.
- *
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE
- * SANTA CRUZ OPERATION INC.
- *
- * The copyright notice above does not evidence any actual or intended
- * publication of such source code.
- */
-
- #ident "@(#)fur:common/cmd/fur/log.h 1.1.2.1"
- #ifndef _LOG_H
- #define _LOG_H
-
- struct flowcount {
- unsigned long callcount;
- unsigned long firstcount;
- unsigned long secondcount;
- };
- struct blockcount {
- unsigned long callcount;
- unsigned long firstblock;
- unsigned long firstcount;
- unsigned long secondcount;
- };
- struct callcount {
- void *callee;
- void *caller;
- unsigned long count;
- };
- #endif
-