1
1

Send a pointer to the data, not the data itself. Otherwise, we could

get a segv in some cases.

This commit was SVN r10984.
Этот коммит содержится в:
Jeff Squyres 2006-07-25 21:42:44 +00:00
родитель ee27f7e2c7
Коммит bdab8d744c

Просмотреть файл

@ -1093,7 +1093,7 @@ int mca_oob_tcp_fini(void)
} else if (OOB_TCP_LISTEN_THREAD == mca_oob_tcp_component.tcp_listen_type) {
void *data;
close(mca_oob_tcp_component.tcp_listen_sd);
opal_thread_join(&mca_oob_tcp_component.tcp_listen_thread, data);
opal_thread_join(&mca_oob_tcp_component.tcp_listen_thread, &data);
opal_progress_unregister(mca_oob_tcp_listen_progress);
}