diff options
author | Julian Büning <julian.buening@comsys.rwth-aachen.de> | 2023-04-01 13:22:38 +0200 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-04-18 13:09:24 +0100 |
commit | adfca64fdbcfd75d42b7a069d27ddbb0228e9eff (patch) | |
tree | 72fea41d16a28a10b14305fdf47af4cc3875a51a /include | |
parent | 02b52541c5e8262e7f7a909d90fb898399d822bd (diff) | |
download | klee-adfca64fdbcfd75d42b7a069d27ddbb0228e9eff.tar.gz |
change some obsolete KDAlloc comments
- mappings were only shared in a former version of KDAlloc - `AllocationFactory(std::size_t, std::uint32_t)`'s second parameter is used for quarantine size, not the location of the mapping
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/KDAlloc/allocator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/klee/KDAlloc/allocator.h b/include/klee/KDAlloc/allocator.h index f59223ed..c4461b79 100644 --- a/include/klee/KDAlloc/allocator.h +++ b/include/klee/KDAlloc/allocator.h @@ -29,7 +29,8 @@ #include <type_traits> namespace klee::kdalloc { -/// Wraps a mapping that is shared with other allocators. +/// Wraps a mapping and delegates allocation to one of 8 sized-bin slot +/// allocators (size < 4096) or a large object allocator (size >= 4096). class Allocator final : public TaggedLogger<Allocator> { public: class Control final { |