commands/leak/leak.cif
changeset 76 b9edfff731fb
parent 72 c9dfb364c2d1
--- a/commands/leak/leak.cif	Fri Sep 17 20:24:30 2010 +0100
+++ b/commands/leak/leak.cif	Fri Sep 17 20:28:05 2010 +0100
@@ -18,7 +18,7 @@
 
 ==long-description
 
-Sits in a loop allocating memory. This continues until either the specified amount of memory has been consumed, or an error occurs. The allocations can be configured to come from a raw RChunk, or via an RHeap (C<User::ChunkHeap()>). The command waits for a keypress before exiting and freeing the memory.
+Sits in a loop allocating memory. This continues until either the specified amount of memory has been consumed, or an error occurs. The allocations are not done in the main application heap, rather the from a raw RChunk (the default), or via an RHeap (C<User::ChunkHeap()>) if the C<--heap> option is given. The command waits for a keypress before exiting and freeing the memory.
 
 ==see-also
 
@@ -40,10 +40,6 @@
 
 The amount of time (in milliseconds) to wait between each increment. Defaults to zero (i.e. no wait).
 
-==option uint a address
-
-The address of a heap to leak into. The value should be in the address space of the process given by the C<--processid> option.
-
 ==option bool H heap
 
 Use a ChunkHeap to consume the memory rather than a straight RChunk.