Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Commit Your Settings

Table of contents

yt_commit

int yt_commit();
  • Usage: Tell libyt you are done filling in all the information. Every rank must call this function.
  • Return: YT_SUCCESS or YT_FAIL

Example

if ( yt_commit() != YT_SUCCESS ) {
    fprintf( stderr, "ERROR: yt_commit() failed!\n" );  
    exit( EXIT_FAILURE );  
}