forked from Imagelibrary/binutils-gdb
Alpha support. Long options. New file format to support more information; backwards compatibility. Line-level profiling, on systems where bfd_find_nearest_line works. Selective display of data.
15 lines
296 B
C
15 lines
296 B
C
#ifndef hertz_h
|
|
#define hertz_h
|
|
|
|
#include "gprof.h"
|
|
|
|
#define HZ_WRONG 0 /* impossible clock frequency */
|
|
|
|
/*
|
|
* Discover the tick frequency of the machine if something goes wrong,
|
|
* we return HZ_WRONG, an impossible sampling frequency.
|
|
*/
|
|
extern int hertz PARAMS((void));
|
|
|
|
#endif /* hertz_h */
|