|
| _free_boxh| Summary | |
#include <membox.h>
int _free_boxh (
void huge *box_mem, /* pool address */
void huge *box); /* block address */
| | Description | | The _free_boxh routine returns a block box, that was previously allocated using _alloc_boxh or _calloc_boxh, to the memory pool specified by box_mem. Note - This routine is reentrant and thread-safe. It may be called from the main function and an interrupt with no restrictions.
| | Return Value | | The _free_boxh routine returns a value of 1 if the box was successfully returned to the memory pool or a value of 0 if there was an error freeing the block. | | See Also | | _alloc_boxh, _calloc_boxh, _init_boxh |
|
|