diff options
author | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:10:36 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:10:36 -0700 |
commit | ca0bac743da2bee23f2284dc63caaa6dd7ae621c (patch) | |
tree | 5dccf745f5288a3eb20e2b105b11baca4b33acdd /src | |
parent | f87cba9bd89f0a34838effa4366a73ddbe0963a6 (diff) |
maintain backward compatible option order
Diffstat (limited to 'src')
-rw-r--r-- | src/options.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/options.c b/src/options.c index a3e2ea2..09a28da 100644 --- a/src/options.c +++ b/src/options.c @@ -90,11 +90,10 @@ static mi_option_desc_t options[_mi_option_last] = { 100, UNINIT, MI_OPTION(reset_delay) }, // reset delay in milli-seconds { 0, UNINIT, MI_OPTION(use_numa_nodes) }, // 0 = use available numa nodes, otherwise use at most N nodes. { 0, UNINIT, MI_OPTION(limit_os_alloc) }, // 1 = do not use OS memory for allocation (but only reserved arenas) - { 8, UNINIT, MI_OPTION(max_segment_reclaim)},// max. number of segment reclaims from the abandoned segments per try. { 100, UNINIT, MI_OPTION(os_tag) }, // only apple specific for now but might serve more or less related purpose { 16, UNINIT, MI_OPTION(max_errors) }, // maximum errors that are output - { 16, UNINIT, MI_OPTION(max_warnings) } // maximum warnings that are output - + { 16, UNINIT, MI_OPTION(max_warnings) }, // maximum warnings that are output + { 8, UNINIT, MI_OPTION(max_segment_reclaim)} // max. number of segment reclaims from the abandoned segments per try. }; static void mi_option_init(mi_option_desc_t* desc); |