diff options
author | lloyd <[email protected]> | 2010-06-21 21:48:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-21 21:48:31 +0000 |
commit | 851b9bb998632713d68ea0639394f7e84b48f0e3 (patch) | |
tree | 1329c5452b23d7330d8f1c4c7465b0f31ac4823a /src/alloc | |
parent | 6d9ea2cb9a2e7f4fdbb7de0e19446cdd5264be3d (diff) |
Doxygen
Diffstat (limited to 'src/alloc')
-rw-r--r-- | src/alloc/allocate.h | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/src/alloc/allocate.h b/src/alloc/allocate.h index 819e2542c..5bce1f205 100644 --- a/src/alloc/allocate.h +++ b/src/alloc/allocate.h @@ -19,14 +19,42 @@ namespace Botan { class BOTAN_DLL Allocator { public: - static Allocator* get(bool); + /** + * Acquire a pointer to an allocator + * @param locking is true if the allocator should attempt to + * secure the memory (eg for using to store keys) + * @return pointer to an allocator; ownership remains with library, + * so do not delete + */ + static Allocator* get(bool locking); - virtual void* allocate(u32bit) = 0; - virtual void deallocate(void*, u32bit) = 0; + /** + * Allocate a block of memory + * @param n how many bytes to allocate + * @return pointer to n bytes of memory + */ + virtual void* allocate(u32bit n) = 0; + /** + * Deallocate memory allocated with allocate() + * @param ptr the pointer returned by allocate() + * @param n the size of the block pointed to by ptr + */ + virtual void deallocate(void* ptr, u32bit n) = 0; + + /** + * @return name of this allocator type + */ virtual std::string type() const = 0; + /** + * Initialize the allocator + */ virtual void init() {} + + /** + * Shutdown the allocator + */ virtual void destroy() {} virtual ~Allocator() {} |