diff options
author | Maria Matejka <mq@ucw.cz> | 2022-10-12 18:04:39 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-10-12 18:04:39 +0200 |
commit | 8d7f516b2a255a40659ce7857fe30937a6ecf7f2 (patch) | |
tree | d94aa10c49552d00c568aa8a0fcfdfd827d0d2b7 /lib | |
parent | d3af586da442b531ff83a341d1e992113c1b2ee0 (diff) |
Attribute blocks are now allocated from slabs instead of malloc()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/route.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/route.h b/lib/route.h index eae251e7..50e62440 100644 --- a/lib/route.h +++ b/lib/route.h @@ -265,6 +265,7 @@ struct ea_storage { #define EALF_SORTED 1 /* Attributes are sorted by code */ #define EALF_BISECT 2 /* Use interval bisection for searching */ #define EALF_CACHED 4 /* List is cached */ +#define EALF_HUGE 8 /* List is too big to fit into slab */ struct ea_class { #define EA_CLASS_INSIDE \ |