1
1
This commit was SVN r31573.
Этот коммит содержится в:
Ralph Castain 2014-04-30 20:55:46 +00:00
родитель 087b84b0ef
Коммит d04a102ab8
2 изменённых файлов: 4 добавлений и 6 удалений

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

@ -110,7 +110,7 @@ static void process_close(int fd, short args, void *cbdata)
{
orte_db_request_t *req = (orte_db_request_t*)cbdata;
orte_db_handle_t *hdl;
int rc;
int rc=ORTE_SUCCESS;
/* get the handle object */
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
@ -123,7 +123,6 @@ static void process_close(int fd, short args, void *cbdata)
}
if (NULL != hdl->module->finalize) {
hdl->module->finalize((struct orte_db_base_module_t*)hdl->module);
rc = ORTE_SUCCESS;
}
found:
@ -162,7 +161,7 @@ static void process_store(int fd, short args, void *cbdata)
{
orte_db_request_t *req = (orte_db_request_t*)cbdata;
orte_db_handle_t *hdl;
int rc;
int rc=ORTE_SUCCESS;
/* get the handle object */
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
@ -213,7 +212,7 @@ static void process_commit(int fd, short args, void *cbdata)
{
orte_db_request_t *req = (orte_db_request_t*)cbdata;
orte_db_handle_t *hdl;
int rc;
int rc=ORTE_SUCCESS;
/* get the handle object */
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
@ -226,7 +225,6 @@ static void process_commit(int fd, short args, void *cbdata)
}
if (NULL != hdl->module->commit) {
hdl->module->commit((struct orte_db_base_module_t*)hdl->module);
rc = ORTE_SUCCESS;
}
found:

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

@ -52,7 +52,7 @@ int orte_ess_base_proc_binding(void)
struct hwloc_topology_support *support;
char *map;
int ret;
char *error;
char *error=NULL;
hwloc_cpuset_t mycpus;
opal_value_t kv;