memory: fix help lint

db4
Slava Pestov 2009-11-06 04:17:57 -06:00
parent eac0f9ffcf
commit 209436071f
1 changed files with 6 additions and 6 deletions

View File

@ -9,13 +9,13 @@ HELP: instances
HELP: gc ( -- ) HELP: gc ( -- )
{ $description "Performs a full garbage collection." } ; { $description "Performs a full garbage collection." } ;
HELP: data-room ( -- cards decks generations ) HELP: data-room ( -- data-room )
{ $values { "cards" "number of kilobytes reserved for card marking" } { "decks" "number of kilobytes reserved for decks of cards" } { "generations" "array of free/total kilobytes pairs" } } { $values { "data-room" data-room } }
{ $description "Queries the runtime for memory usage information." } ; { $description "Queries the VM for memory usage information." } ;
HELP: code-room ( -- code-total code-used code-free largest-free-block ) HELP: code-room ( -- code-room )
{ $values { "code-total" "total kilobytes in the code heap" } { "code-used" "kilobytes used in the code heap" } { "code-free" "kilobytes free in the code heap" } { "largest-free-block" "size of largest free block" } } { $values { "code-room" code-room } }
{ $description "Queries the runtime for memory usage information." } ; { $description "Queries the VM for memory usage information." } ;
HELP: size ( obj -- n ) HELP: size ( obj -- n )
{ $values { "obj" "an object" } { "n" "a size in bytes" } } { $values { "obj" "an object" } { "n" "a size in bytes" } }