1
1

Thanks Nathan - decrement the counter to ensure singleton's startup correctly

Этот коммит содержится в:
Ralph Castain 2015-04-08 11:23:00 -07:00
родитель eb56117405
Коммит acc2c7937c

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

@ -200,6 +200,9 @@ static int native_init(void)
/* let the caller know that the server isn't available yet */
return OPAL_ERR_SERVER_NOT_AVAIL;
} else {
/* not ready yet, so decrement our init_cntr so we can come thru
* here again */
--init_cntr;
return OPAL_ERROR;
}
}