View | Details | Raw Unified | Return to bug 197624 | Differences between
and this patch

Collapse All | Expand All

(-)nestegg/halloc/src/align.h (-1 / +1 lines)
Lines 30-36 Link Here
30
	void (*q)(void);
30
	void (*q)(void);
31
};
31
};
32
32
33
typedef union max_align max_align_t;
33
typedef union max_align halloc_max_align_t;
34
34
35
#endif
35
#endif
36
36
(-)nestegg/halloc/src/halloc.c (-1 / +1 lines)
Lines 30-36 Link Here
30
#endif
30
#endif
31
	hlist_item_t  siblings; /* 2 pointers */
31
	hlist_item_t  siblings; /* 2 pointers */
32
	hlist_head_t  children; /* 1 pointer  */
32
	hlist_head_t  children; /* 1 pointer  */
33
	max_align_t   data[1];  /* not allocated, see below */
33
	halloc_max_align_t   data[1];  /* not allocated, see below */
34
	
34
	
35
} hblock_t;
35
} hblock_t;
36
36

Return to bug 197624