PAPI  5.0.1.0
fork2.c File Reference
Include dependency graph for fork2.c:

Go to the source code of this file.

Functions

int main (int argc, char **argv)

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 17 of file fork2.c.

{
    int retval;
    int status;

    tests_quiet( argc, argv );  /* Set TESTS_QUIET variable */

    retval = PAPI_library_init( PAPI_VER_CURRENT );
    if ( retval != PAPI_VER_CURRENT )
        test_fail( __FILE__, __LINE__, "main PAPI_library_init", retval );

    if ( fork(  ) == 0 ) {
        retval = PAPI_library_init( PAPI_VER_CURRENT );
        if ( retval != PAPI_VER_CURRENT )
            test_fail( __FILE__, __LINE__, "forked PAPI_library_init", retval );
        exit( 0 );
    } else {
        wait( &status );
        if ( WEXITSTATUS( status ) != 0 )
            test_fail( __FILE__, __LINE__, "fork", WEXITSTATUS( status ) );
    }

    test_pass( __FILE__, NULL, 0 );
    exit( 1 );
}

Here is the call graph for this function:

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines