unregister_block

Definition: include machine.e (or safe.e)
unregister_block(atom a)
Description: Remove a block of memory from the list of safe blocks maintained by safe.e (the debug version of machine.e ). The block starts at address a.
Comments: This routine is only meant to be used for debugging purposes . Use it to unregister blocks of memory that you have previously registered using register_block(). By unregistering a block, you remove it from the list of safe blocks maintained by safe.e . This prevents your program from performing any further reads or writes of memory within the block.
See register_block() for further comments and an example.
See Also: register_block, safe.e