2005-01-26 Oliver Stoeneberg <oliverst@online.de>
* include/malloc.h: Add missing return code defines for _heapwalk()
This commit is contained in:
parent
325eadaa57
commit
93b96855f4
@ -1,3 +1,8 @@
|
|||||||
|
2005-01-26 Oliver Stoeneberg <oliverst@online.de>
|
||||||
|
|
||||||
|
* include/malloc.h: Add missing return code defines for
|
||||||
|
_heapwalk()
|
||||||
|
|
||||||
2005-01-17 Danny Smith <dannysmith@users.sourceforge.net>
|
2005-01-17 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/sys/stat.h (struct __stat64): Change st_size type to
|
* include/sys/stat.h (struct __stat64): Change st_size type to
|
||||||
|
@ -35,6 +35,14 @@ typedef struct _heapinfo
|
|||||||
#define _USEDENTRY 0
|
#define _USEDENTRY 0
|
||||||
#define _FREEENTRY 1
|
#define _FREEENTRY 1
|
||||||
|
|
||||||
|
/* Return codes for _heapwalk() */
|
||||||
|
#define _HEAPEMPTY (-1)
|
||||||
|
#define _HEAPOK (-2)
|
||||||
|
#define _HEAPBADBEGIN (-3)
|
||||||
|
#define _HEAPBADNODE (-4)
|
||||||
|
#define _HEAPEND (-5)
|
||||||
|
#define _HEAPBADPTR (-6)
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user