reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/ParallelJIT/ParallelJIT.cpp
  281   if ( result != 0 ) {
  287   result = pthread_create( &fibThread1, nullptr, callFunc, &fib1 );
  288   if ( result != 0 ) {
  294   result = pthread_create( &fibThread2, nullptr, callFunc, &fib2 );
  295   if ( result != 0 ) {
  303   result = pthread_join( add1Thread, &returnValue );
  304   if ( result != 0 ) {
  310   result = pthread_join( fibThread1, &returnValue );
  311   if ( result != 0 ) {
  317   result = pthread_join( fibThread2, &returnValue );
  318   if ( result != 0 ) {