Fri, 07 Jun 2024 03:06:18 UTC | login

Information for build memtailor-1.0-6.20160311.gite85453b.fc28

ID8165
Package Namememtailor
Version1.0
Release6.20160311.gite85453b.fc28
Epoch
SummaryC++ library of special-purpose memory allocators
DescriptionMemtailor 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.
Built bykojiadmin
State complete
Volume DEFAULT
StartedSat, 14 Apr 2018 20:09:14 UTC
CompletedSat, 14 Apr 2018 20:09:14 UTC
Tags
f28
f29
RPMs
src
memtailor-1.0-6.20160311.gite85453b.fc28.src.rpm (info) (download)
riscv64
memtailor-1.0-6.20160311.gite85453b.fc28.riscv64.rpm (info) (download)
memtailor-devel-1.0-6.20160311.gite85453b.fc28.riscv64.rpm (info) (download)
Changelog * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6.20160311.gite85453b - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-5.20160311.gite85453b - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-4.20160311.gite85453b - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Mon Apr 04 2016 Jerry James <loganjerry@gmail.com> - 1.0-3.20160311.gite85453b - Update to latest upstream snapshot * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-2.20140924.git7b48b98 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Sat Jan 16 2016 Jerry James <loganjerry@gmail.com> - 1.0-1.20140924.git7b48b98 - Change to Macaulay2 repo - Revert Macaulay2 patch to disable libtool (memtailor-libtool.patch) - Use a patch instead of sed for gtest manipulations (memtailor-gtest.patch) * Fri Sep 04 2015 Jerry James <loganjerry@gmail.com> - 0-1.20130809.git722a30c - Initial RPM