gprof.h (b34f7debd8abe0bfc30995eea94fce9f0cc84c0c) gprof.h (ffbce11feab8dc7097b528a17f102c864094b297)
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

--- 63 unchanged lines hidden (view full) ---

72#define TRUE 1
73
74 /*
75 * ticks per second
76 */
77long hz;
78
79#ifdef GPROF4
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

--- 63 unchanged lines hidden (view full) ---

72#define TRUE 1
73
74 /*
75 * ticks per second
76 */
77long hz;
78
79#ifdef GPROF4
80typedef int32_t UNIT;
80typedef int64_t UNIT;
81#else
82typedef u_short UNIT; /* unit of profiling */
83#endif
84char *a_outname;
85#define A_OUTNAME "a.out"
86
87char *gmonname;
88#define GMONNAME "gmon.out"

--- 258 unchanged lines hidden ---
81#else
82typedef u_short UNIT; /* unit of profiling */
83#endif
84char *a_outname;
85#define A_OUTNAME "a.out"
86
87char *gmonname;
88#define GMONNAME "gmon.out"

--- 258 unchanged lines hidden ---