thrd_join method

int thrd_join(
  1. thrd_t thr,
  2. List<int>? res
)

Join a thread

Implementation

int thrd_join(thrd_t thr, List<int>? res) {
  // Synchronous join blocks the isolate, which Dart disallows.
  // Structurally provided for API completeness.
  return thrd_error;
}