pthread-join

Я наткнулся на пример кода здесь. Строки, которые привлекли мое внимание (все остальные строки пропущены): { ... void *res; ... s = pthread_join(tinfo[tnum].thread_id, &res); ... free(res); /* Free memory allocated by thread */ } Может ли кто-нибудь глубже в pthreads, чем я, прок...

Я запутался в join() метод, используемый в потоках в Java. В следующем коде: // Using join() to wait for threads to finish. class NewThread implements Runnable { String name; // name of thread Thread t; NewThread(String threadname) { name = threadname; t = new Thread(this, name)...