Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-02-22 19:12:12 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-02-22 19:12:12 +0300
commit5e41760a15d2243242efea4ee92aefc8b3104db4 (patch)
tree2175b3088b825c6503d159f07e8450733e49b177 /intern/guardedalloc
parent32c13137f585c91ad05528a20e8bce3f37bb7bd8 (diff)
doxygen: add bullet to extern libs, some small changes in page names, and fixes around license blocks
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/MEM_guardedalloc.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/intern/guardedalloc/MEM_guardedalloc.h b/intern/guardedalloc/MEM_guardedalloc.h
index 844622737b4..fcf4b488659 100644
--- a/intern/guardedalloc/MEM_guardedalloc.h
+++ b/intern/guardedalloc/MEM_guardedalloc.h
@@ -30,26 +30,32 @@
* \ingroup MEM
*
* \author Copyright (C) 2001 NaN Technologies B.V.
- * \brief Guarded memory (de)allocation
- *
+ * \brief Read \ref MEMPage
+ */
+
+/**
+ * \page MEMPage Guarded memory(de)allocation
*
* \section aboutmem c-style guarded memory allocation
*
- * \subsection about About the MEM module
+ * \subsection memabout About the MEM module
*
* MEM provides guarded malloc/calloc calls. All memory is enclosed by
* pads, to detect out-of-bound writes. All blocks are placed in a
* linked list, so they remain reachable at all times. There is no
* back-up in case the linked-list related data is lost.
*
- * \subsection issues Known issues with MEM
+ * \subsection memissues Known issues with MEM
*
* There are currently no known issues with MEM. Note that there is a
* second intern/ module with MEM_ prefix, for use in c++.
*
- * \subsection dependencies Dependencies
+ * \subsection memdependencies Dependencies
* - stdlib
* - stdio
+ *
+ * \subsection memdocs API Documentation
+ * See \ref MEM_guardedalloc.h
*/
#ifndef MEM_MALLOCN_H