Sha256: 4f409b4f3af8cc690e76aaee9e6b285d35f1a1bd5e8321a94371e6857cb2046f
Contents?: true
Size: 606 Bytes
Versions: 6
Compression:
Stored size: 606 Bytes
Contents
#ifndef SASS_SETTINGS_H #define SASS_SETTINGS_H // Global compile time settings should go here // When enabled we use our custom memory pool allocator // With intense workloads this can double the performance // Max memory usage mostly only grows by a slight amount // #define SASS_CUSTOM_ALLOCATOR // How many buckets should we have for the free-list // Determines when allocations go directly to malloc/free // For maximum size of managed items multiply by alignment #define SassAllocatorBuckets 512 // The size of the memory pool arenas in bytes. #define SassAllocatorArenaSize (1024 * 256) #endif
Version data entries
6 entries across 5 versions & 4 rubygems