Files
Arquivotheca.SunOS-4.1.3/lib/csu/common/mon.h
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

35 lines
601 B
C

/* @(#)mon.h 1.1 92/07/30 SMI; from S5R2 1.6 */
struct phdr {
char *lpc;
char *hpc;
int ncnt;
};
typedef unsigned short WORD;
/*
* fraction of text space to allocate for histogram counters
* here, 1/2
*/
#define HISTFRACTION 2
/*
* percent of text space to allocate for counters
* with a minimum.
*/
#define ARCDENSITY 5
#define MINARCS 50
struct cnt {
int *pc;
long ncall;
};
#define MON_OUT "mon.out"
#define MPROGS0 (150 * sizeof(WORD)) /* 300 for pdp11, 600 for 32-bits */
#define MSCALE0 4
#ifndef NULL
#define NULL 0
#endif