Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
112 7u83 1
#ifndef __TENDRA_MALLOC_H
2
#define __TENDRA_MALLOC_H
3
 
4
#ifdef _SVID_SOURCE
5
 
6
struct mallinfo {
7
	int		arena;	/* Non-mmapped space allocated (bytes) */
8
	int		ordblks;	/* Number of free chunks */
9
	int		smblks;	/* Number of free fastbin blocks */
10
	int		hblks;	/* Number of mmapped regions */
11
	int		hblkhd;	/* Space allocated in mmapped regions (bytes) */
12
	int		usmblks;	/* Maximum total allocated space
13
					 * (bytes) */
14
	int		fsmblks;	/* Space in freed fastbin blocks
15
					 * (bytes) */
16
	int		uordblks;	/* Total allocated space (bytes) */
17
	int		fordblks;	/* Total free space (bytes) */
18
	int		keepcost;	/* Top-most, releasable space (bytes) */
19
};
20
 
21
#endif
22
 
23
 
24
#endif