commands/leak/leak.cif
changeset 59 c9dfb364c2d1
parent 31 d0e1c40de386
--- a/commands/leak/leak.cif	Tue Sep 14 09:49:39 2010 +0100
+++ b/commands/leak/leak.cif	Wed Sep 15 18:07:34 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.