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
path: root/doc
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-03-20 18:51:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-03-20 18:51:33 +0300
commita5bb91839219532d133d5561c23120fae6b73cff (patch)
tree415809f3b321fce4f1a268138225551d4e92114b /doc
parent4f97f585135b0e040281e95ca59f6d4a9472d637 (diff)
Memory allocator: Clarify consistency check function
Also make it to return truth when everything is good and false otherwise.
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/blender-guardedalloc.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guides/blender-guardedalloc.txt b/doc/guides/blender-guardedalloc.txt
index 3db647a4e77..2e49f25bd92 100644
--- a/doc/guides/blender-guardedalloc.txt
+++ b/doc/guides/blender-guardedalloc.txt
@@ -51,7 +51,7 @@ void MEM_printmemlist(void);
- if err_stream is set by MEM_set_error_stream() this function dumps a list of all
currently allocated memory blocks with length and name to the stream
-int MEM_check_memory_integrity(void);
+bool MEM_consistency_check(void);
- this function tests if the internal structures of the memory manager are intact
- returns 0 on success and !=0 on error