diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-08-08 00:24:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-08-08 00:24:58 +0000 |
commit | c9d6495f9836d2a5c032be48d61dd8c578c237d4 (patch) | |
tree | 1df407f53a32b628e3db6522e2286fa8615f74f6 | |
parent | 14a418c633882eff8b82aef18244093404716300 (diff) | |
download | glibc-c9d6495f9836d2a5c032be48d61dd8c578c237d4.tar.gz glibc-c9d6495f9836d2a5c032be48d61dd8c578c237d4.tar.xz glibc-c9d6495f9836d2a5c032be48d61dd8c578c237d4.zip |
Add prototype for write_profiling.
-rw-r--r-- | gmon/sys/gmon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gmon/sys/gmon.h b/gmon/sys/gmon.h index d963797cd2..458779cca3 100644 --- a/gmon/sys/gmon.h +++ b/gmon/sys/gmon.h @@ -174,6 +174,10 @@ void monstartup __P ((u_long lowpc, u_long highpc)); /* Clean up profiling and write out gmon.out. */ void _mcleanup __P ((void)); +/* Write current profiling data to file. */ +void __write_profiling __P ((void)); +void write_profiling __P ((void)); + __END_DECLS #endif /* !_SYS_GMON_H_ */ |