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

References

examples/ParallelJIT/ParallelJIT.cpp
  303   result = pthread_join( add1Thread, &returnValue );
  308   std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
  310   result = pthread_join( fibThread1, &returnValue );
  315   std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
  317   result = pthread_join( fibThread2, &returnValue );
  322   std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;