summaryrefslogtreecommitdiff
path: root/cesar/lib/slab.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/lib/slab.h')
-rw-r--r--cesar/lib/slab.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cesar/lib/slab.h b/cesar/lib/slab.h
index 0a02eceba4..eea0e040ca 100644
--- a/cesar/lib/slab.h
+++ b/cesar/lib/slab.h
@@ -12,6 +12,9 @@
* \brief Slab allocator.
* \ingroup lib
*
+ * Slab Allocator
+ * ==============
+ *
* The slab allocator is a finer grain allocator. It allocates memory using
* the block allocator and slices the allocated blocks into smaller memory
* buffers, all with the same size.
@@ -60,6 +63,8 @@ struct slab_cache_t
};
typedef struct slab_cache_t slab_cache_t;
+BEGIN_DECLS
+
/**
* Initialise the slab allocator.
*/
@@ -111,4 +116,6 @@ void
slab_release_ (void *object __FL);
#define slab_release(object) slab_release_ ((object) __fL)
+END_DECLS
+
#endif /* lib_slab_h */