TinyMUX

@list-allocations

Commands

COMMAND: @list allocations

This command lists the usage statistics for the internal buffer pools. For each buffer pool, the following information is listed:

Size   - The size of a buffer, in characters.
InUse  - The number of buffers presently allocated from the pool.
Total  - The total number of buffers currently in the pool.
Allocs - The total number of buffers ever allocated from the pool.
Lost   - The number of buffers lost due to buffer header corruption.

Information is reported for the following pools:

Lbufs    - Large buffers, used when handling data input by the user,
           object attributes, the results of interpreting commands, and
           many other places.
Mbufs    - Medium-sized buffers, for when an sbuf is too small but an lbuf
           is too large.
Sbufs    - Small buffers, for when you need only a little space.
Bools    - Boolean expressions, used when evaluating locks.
Descs    - Network descriptors, one is used for each connected player.
Qentries - Queue entries, one is used for each command placed on the
           queue. (@wait, @trigger, @switch, @dolist, etc).
Lbufrefs - Reference counting structures for the lbufs that hold global
           r-register contents.
Regrefs  - Reference counting structures for global r-registers.

Related Topics: @list buffers.