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.
 - flag
 - Boolean to set the atomic flag to. true to be atomic, false otherwise.
 
Examples
          superBlock = bdeCreateSuperBlock();
          bdeSetBlockAtomicFlag(superBlock, true)
          boolean = bdeIsBlockAtomic(block)
        
        
          boolean = 1