pthread_join method

int pthread_join(
  1. pthread_t thread,
  2. List? retval
)

Join a thread

Implementation

int pthread_join(pthread_t thread, List<dynamic>? retval) {
  // Synchronous join blocks the isolate, which Dart disallows.
  // Structurally provided for API completeness.
  return 35; // EDEADLK
}