blob: fb193f9307b14823667d7603dacbf1bef64b1269 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/prof/gmon.h.orig 2007-10-04 01:06:18.000000000 +0200
+++ src/prof/gmon.h 2007-10-04 01:06:48.000000000 +0200
@@ -29,6 +29,8 @@
#ifndef gmon_h
#define gmon_h
+#include <inttypes.h>
+
/* Size of the 4.4BSD gmon header */
#define GMON_HDRSIZE_BSD44_32 (4 + 4 + 4 + 4 + 4 + (3 * 4))
#define GMON_HDRSIZE_BSD44_64 (8 + 8 + 4 + 4 + 4 + (3 * 4))
@@ -119,7 +121,7 @@
struct tostruct
{
- char *selfpc;
+ uint32_t selfpc;
int count;
unsigned short link;
};
|