Пакет memtailor: Информация

    Исходный пакет: memtailor
    Версия: 0-alt1.git123afe0
    Собран:  4 апреля 2022 г. 8:27
    Сообщить об ошибке в пакете
    Домашняя страница: 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.

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    libmemtailor-devel (e2kv6, e2kv5, e2kv4, e2k)
    libmemtailor0 (e2kv6, e2kv5, e2kv4, e2k)
    libmemtailor0-debuginfo (e2kv6, e2kv5, e2kv4, e2k)

    Сопровождающий: Leontiy Volodin

    Список участников:
    Leontiy Volodin

      1. libgtest-devel
      2. gcc-c++

    Последнее изменение


    6 октября 2021 г. Leontiy Volodin 0-alt1.git123afe0
    - Initial build for ALT Sisyphus.
    - Built as require for Singular.
    - Applied the patch from fedora.