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.
- */
-
- #ifndef _MON_H
- #define _MON_H
- #ident "@(#)sgs-head:common/head/mon.h 1.8.4.3"
-
- struct hdr {
- char *lpc;
- char *hpc;
- int nfns;
- };
-
- struct cnt {
- char *fnpc;
- long mcnt;
- };
-
- typedef unsigned short WORD;
-
- #define MON_OUT "mon.out"
- #define MPROGS0 (150 * sizeof(WORD))
- #define MSCALE0 4
- #ifndef NULL
- #define NULL 0
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- extern void monitor(int (*)(), int (*)(), WORD *, int, int);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif /*_MON_H*/
-