--large_pages option; allow dynamic override of arena defaults

This commit is contained in:
Ryan Fleury
2024-09-17 13:41:56 -07:00
parent 4d41c32586
commit 5dd89f350d
4 changed files with 141 additions and 118 deletions
+8
View File
@@ -8371,6 +8371,14 @@ rd_autocomp_lister_item_qsort_compare(RD_AutoCompListerItem *a, RD_AutoCompListe
{
result = +1;
}
else if(a->string.size < b->string.size)
{
result = -1;
}
else if(a->string.size > b->string.size)
{
result = +1;
}
else
{
result = strncmp((char *)a->string.str, (char *)b->string.str, Min(a->string.size, b->string.size));