blob: d994dd5e9790ac35cb2e8f5df030a2fba9645334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _SYS_GMON_H
#include <gmon/sys/gmon.h>
/* Now define the internal interfaces. */
/* Write current profiling data to file. */
extern void __write_profiling (void);
extern void write_profiling (void);
struct __bb;
extern void __bb_init_func (struct __bb *bb);
extern void __bb_exit_func (void);
#endif
|