You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
950 B
36 lines
950 B
/*
|
|
* UCW Library -- Generic allocators
|
|
*
|
|
* (c) 2014 Martin Mares <mj@ucw.cz>
|
|
*/
|
|
|
|
#ifndef _UCW_ALLOC_H
|
|
#define _UCW_ALLOC_H
|
|
|
|
/**
|
|
* This structure describes a generic allocator. It provides pointers
|
|
* to three functions, which handle the actual (re)allocations.
|
|
**/
|
|
struct ucw_allocator {
|
|
void * (*alloc)(struct ucw_allocator *alloc, size_t size);
|
|
void * (*realloc)(struct ucw_allocator *alloc, void *ptr, size_t old_size, size_t new_size);
|
|
void (*free)(struct ucw_allocator *alloc, void *ptr);
|
|
};
|
|
|
|
/* alloc-std.c */
|
|
|
|
/**
|
|
* [[std]]
|
|
* This allocator uses <<basics:xmalloc()>>, <<basics:xrealloc()>> and <<basics:xfree()>>. The memory
|
|
* it allocates is left unitialized.
|
|
**/
|
|
extern struct ucw_allocator ucw_allocator_std;
|
|
|
|
/**
|
|
* [[zeroing]]
|
|
* This allocator uses <<basics:xmalloc()>>, <<basics:xrealloc()>> and <<basics:xfree()>>. All memory
|
|
* is zeroed upon allocation.
|
|
**/
|
|
extern struct ucw_allocator ucw_allocator_zeroed;
|
|
|
|
#endif
|
|
|