[rbldnsd] What is this telling me?

Michael Tokarev mjt at tls.msk.ru
Sat Feb 12 23:41:30 MSK 2005


David Cary Hart wrote:
> This is in the syslog on refresh: mem arena=272 free=69 mmap=80 Kb

See man 3 mallinfo.  In short,
   arena is tha amount of malloc'ed memory from sbrk-allocated area
   mmap is tha mount of mmap-ed memory (malloc uses mmap(/dev/zero)
    for larger requests
   free is the amount of memory in internal malloc structures which
    is requested from the OS but isn't used by the program (eg the
    memory wich was free()d but not yet used by subsequent malloc()).

/mjt


More information about the rbldnsd mailing list