1
1
Этот коммит содержится в:
Ralph Castain 2016-06-16 17:30:30 -07:00
родитель 702a982271
Коммит 044c561cba
4 изменённых файлов: 8 добавлений и 2 удалений

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

@ -30,7 +30,7 @@ greek=a1
# command, or with the date (if "git describe" fails) in the form of
# "date<date>".
repo_rev=git99b989f
repo_rev=gitaf7a389
# If tarball_version is not empty, it is used as the version string in
# the tarball filename, regardless of all other versions listed in
@ -44,7 +44,7 @@ tarball_version=
# The date when this release was created
date="Jun 14, 2016"
date="Jun 16, 2016"
# The shared library version of each of PMIx's public libraries.
# These versions are maintained in accordance with the "Library

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

@ -38,6 +38,7 @@ static void notification_fn(size_t evhdlr_registration_id,
pmix_status_t status,
const pmix_proc_t *source,
pmix_info_t info[], size_t ninfo,
pmix_info_t results[], size_t nresults,
pmix_event_notification_cbfunc_fn_t cbfunc,
void *cbdata)
{

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

@ -1516,6 +1516,10 @@ static void ldes(pmix_listener_t *p)
if (0 <= p->socket) {
CLOSE_THE_SOCKET(p->socket);
}
/* cleanup the rendezvous file */
if (0 == access(p->address.sun_path, F_OK)) {
unlink(p->address.sun_path);
}
if (NULL != p->varname) {
free(p->varname);
}

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

@ -45,6 +45,7 @@ static void errhandler(size_t evhdlr_registration_id,
pmix_status_t status,
const pmix_proc_t *source,
pmix_info_t info[], size_t ninfo,
pmix_info_t results[], size_t nresults,
pmix_event_notification_cbfunc_fn_t cbfunc,
void *cbdata)
{