gprof.h (7799f52a32f592a7efe259bc3411ba52d13db797) | gprof.h (e6c645fad204937f30de0b6fd13aa2a52243a115) |
---|---|
1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 67 unchanged lines hidden (view full) --- 76#define FALSE 0 77#define TRUE 1 78 79 /* 80 * ticks per second 81 */ 82long hz; 83 | 1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 67 unchanged lines hidden (view full) --- 76#define FALSE 0 77#define TRUE 1 78 79 /* 80 * ticks per second 81 */ 82long hz; 83 |
84#ifdef GPROF4 85typedef unsigned int UNIT; 86#else |
|
84typedef u_short UNIT; /* unit of profiling */ | 87typedef u_short UNIT; /* unit of profiling */ |
88#endif |
|
85char *a_outname; 86#define A_OUTNAME "a.out" 87 88char *gmonname; 89#define GMONNAME "gmon.out" 90#define GMONSUM "gmon.sum" 91 92 /* --- 255 unchanged lines hidden --- | 89char *a_outname; 90#define A_OUTNAME "a.out" 91 92char *gmonname; 93#define GMONNAME "gmon.out" 94#define GMONSUM "gmon.sum" 95 96 /* --- 255 unchanged lines hidden --- |