pad 引数は、 ヒープの一番上から切り詰める際に残す未使用領域の量を指定する。 この引数が 0 の場合、 ヒープの一番上の最小量のメモリーだけを維持できる (つまり 1 ページかそれ未満)。 0 以外の引数を指定すると、 ヒープの一番上にある程度の量の未使用領域を残し、 将来の割り当てを sbrk(2) でヒープを拡張せずに行えるようにできる。
インターフェース | 属性 | 値 |
malloc_trim() | Thread safety | MT-Safe |
Only the main heap (using sbrk(2)) honors the pad argument; thread heaps do not.
Since glibc 2.8 this function frees memory in all arenas and in all chunks with whole free pages.
Before glibc 2.8 this function only freed memory at the top of the heap in the main arena.
[man1]
[man2]
[man3]
[man4]
[man5]
[man6]
[man7]
[man8]
[a]
[b]
[c]
[d]
[e]
[f]
[g]
[h]
[i]
[j]
[k]
[l]
[m]
[n]
[o]
[p]
[q]
[r]
[s]
[t]
[u]
[v]
[w]
[x]
[y]
[z]