Subversion Repositories tendra.SVN

Rev

Rev 80 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef __TENDRA_MALLOC_H
#define __TENDRA_MALLOC_H

#ifdef _SVID_SOURCE

struct mallinfo {
        int             arena;  /* Non-mmapped space allocated (bytes) */
        int             ordblks;        /* Number of free chunks */
        int             smblks; /* Number of free fastbin blocks */
        int             hblks;  /* Number of mmapped regions */
        int             hblkhd; /* Space allocated in mmapped regions (bytes) */
        int             usmblks;        /* Maximum total allocated space
                                         * (bytes) */
        int             fsmblks;        /* Space in freed fastbin blocks
                                         * (bytes) */
        int             uordblks;       /* Total allocated space (bytes) */
        int             fordblks;       /* Total free space (bytes) */
        int             keepcost;       /* Top-most, releasable space (bytes) */
};

#endif


#endif