Make opt_narenas unsigned rather than size_t.

This commit is contained in:
Jason Evans
2016-02-24 11:03:40 -08:00
parent 603b3bd413
commit 8f683b94a7
6 changed files with 24 additions and 14 deletions

View File

@@ -163,7 +163,7 @@ TEST_BEGIN(test_mallctl_opt)
TEST_MALLCTL_OPT(bool, abort, always);
TEST_MALLCTL_OPT(size_t, lg_chunk, always);
TEST_MALLCTL_OPT(const char *, dss, always);
TEST_MALLCTL_OPT(size_t, narenas, always);
TEST_MALLCTL_OPT(unsigned, narenas, always);
TEST_MALLCTL_OPT(const char *, purge, always);
TEST_MALLCTL_OPT(ssize_t, lg_dirty_mult, always);
TEST_MALLCTL_OPT(ssize_t, decay_time, always);