Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37042759
en ru br
Репозитории ALT
S:0-alt1.git123afe0
www.altlinux.org/Changes

Группа :: Система/Библиотеки
Пакет: memtailor

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Текущая версия: 0-alt1.git123afe0
Время сборки: 6 октября 2021, 15:18 ( 129.2 недели назад )
Размер архива: 33.19 Kb

Домашняя страница:   https://github.com/Macaulay2/memtailor

Лицензия: GPL-2.0+ and BSD-3-Clause
О пакете: C++ library of special purpose memory allocators
Описание:

Memtailor is a C++ library of special purpose memory allocators.
It currently offers an arena allocator and a memory pool.
The main motivation to use a memtailor allocator is better and more
predictable performance than you get with new/delete.  Sometimes a
memtailor allocator can also be more convenient due to the ability to
free many allocations at one time.
The Memtailor memory pool is useful if you need to do many allocations
of a fixed size.  For example a memory pool is well suited to allocate
the nodes in a linked list.
You can think of the Memtailor arena allocator as being similar to stack
allocation.  Both kinds of allocation are very fast and require you to
allocate/deallocate memory in last-in-first-out order.  Arena allocation
has the further benefits that it stays within the C++ standard, it will
not cause a stack overflow, you can have multiple arena allocators at
the same time and allocation is not tied to a function invocation.

Текущий майнтейнер: Leontiy Volodin

Список всех майнтейнеров, принимавших участие
в данной и/или предыдущих сборках пакета:

Список rpm-пакетов, предоставляемый данным srpm-пакетом:

  • libmemtailor-devel
  • libmemtailor0
  • libmemtailor0-debuginfo
ACL:
     
    дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    текущий майнтейнер: Michael Shigorin