diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2011-01-21 15:02:56 -0800 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2011-01-31 10:17:09 -0800 |
commit | 42fd9c2ebb8a9eecf69d6a7a2bc0d778f49285de (patch) | |
tree | 4c967af2191669dd828a56ad365e9220564991e6 /src/glsl/ralloc.h | |
parent | d3073f58c17d8675a2ecdd5dfa83e5520c78e1a8 (diff) |
ralloc: a new MIT-licensed recursive memory allocator.
Diffstat (limited to 'src/glsl/ralloc.h')
-rw-r--r-- | src/glsl/ralloc.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/glsl/ralloc.h b/src/glsl/ralloc.h index 57e8c7a138..d5338152f1 100644 --- a/src/glsl/ralloc.h +++ b/src/glsl/ralloc.h @@ -34,7 +34,14 @@ * ralloc_free on any particular object to free it and all of its * children. * - * This is currently a wrapper around talloc, but that will change. + * The conceptual working of ralloc was directly inspired by Andrew + * Tridgell's talloc, but ralloc is an independent implementation + * released under the MIT license and tuned for Mesa. + * + * The talloc implementation is available under the GNU Lesser + * General Public License (GNU LGPL), version 3 or later. It is + * more sophisticated than ralloc in that it includes reference + * counting and debugging features. See: http://talloc.samba.org/ */ #ifndef RALLOC_H |