bdeSetBlockAtomicFlag

Sets the flag for whether or not the block is atomic. block is of type hwscpHyperBlock. Only works with super blocks.

Syntax

bdeSetBlockAtomicFlag(block, flag);

Inputs

block
Block to set the atomic flag of.
Type: block
flag
Boolean to set the atomic flag to. true to be atomic, false otherwise.
Type: Boolean

Examples

Set a block's atomic flag option:

          superBlock = bdeCreateSuperBlock();
          bdeSetBlockAtomicFlag(superBlock, true)
          boolean = bdeIsBlockAtomic(block)
        

          boolean = 1