Lines Matching refs:mallinfo
10 * Basic mallinfo() test. Refer to glibc test mallinfo2 test
18 static struct mallinfo info1;
37 struct mallinfo info2;
43 info2 = mallinfo();
46 tst_res(TPASS, "mallinfo() uordblks passed");
48 tst_res(TFAIL, "mallinfo() uordblks failed");
53 info2 = mallinfo();
56 tst_res(TPASS, "mallinfo() ordblks passed");
58 tst_res(TFAIL, "mallinfo() ordblks failed");
66 tst_res(TFAIL, "The member of mallinfo struct is not int");
68 info1 = mallinfo();
79 TST_TEST_TCONF("system doesn't implement non-POSIX mallinfo()");