1
1

- The correct function to close a socket. Thanks to George for noticing it.

This commit was SVN r19513.
Этот коммит содержится в:
Shiqing Fan 2008-09-08 14:35:47 +00:00
родитель 93897c87a8
Коммит c90e6e4f6d

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

@ -857,7 +857,7 @@ void orte_trigger_event(orte_trigger_event_t *trig)
}
send(trig->channel, (const char *) &data, sizeof(int), 0);
CloseHandle((HANDLE)trig->channel);
closesocket(trig->channel);
opal_progress();
}