Skip to content

Commit 55958fd

Browse files
committed
comment clarification
1 parent 3455256 commit 55958fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/convcore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ void CmiStartThreads() {
214214

215215
// Create threads for ranks 1 and up, run rank 0 on main thread (like original Converse)
216216
for (int i = 1; i < Cmi_mynodesize; i++) {
217-
std::thread t(converseRunPe, i, 0); // everReturn is 0 for ranks > 0 because these ranks always run the start function
217+
std::thread t(converseRunPe, i, 0); // everReturn is 0 for ranks > 0, meaning these ranks will call the start function and not return from ConverseInit
218218
t.detach();
219219
}
220220

0 commit comments

Comments
 (0)