Silence warnings
This commit was SVN r31573.
Этот коммит содержится в:
родитель
087b84b0ef
Коммит
d04a102ab8
@ -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_request_t *req = (orte_db_request_t*)cbdata;
|
||||||
orte_db_handle_t *hdl;
|
orte_db_handle_t *hdl;
|
||||||
int rc;
|
int rc=ORTE_SUCCESS;
|
||||||
|
|
||||||
/* get the handle object */
|
/* get the handle object */
|
||||||
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
|
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) {
|
if (NULL != hdl->module->finalize) {
|
||||||
hdl->module->finalize((struct orte_db_base_module_t*)hdl->module);
|
hdl->module->finalize((struct orte_db_base_module_t*)hdl->module);
|
||||||
rc = ORTE_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
found:
|
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_request_t *req = (orte_db_request_t*)cbdata;
|
||||||
orte_db_handle_t *hdl;
|
orte_db_handle_t *hdl;
|
||||||
int rc;
|
int rc=ORTE_SUCCESS;
|
||||||
|
|
||||||
/* get the handle object */
|
/* get the handle object */
|
||||||
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
|
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_request_t *req = (orte_db_request_t*)cbdata;
|
||||||
orte_db_handle_t *hdl;
|
orte_db_handle_t *hdl;
|
||||||
int rc;
|
int rc=ORTE_SUCCESS;
|
||||||
|
|
||||||
/* get the handle object */
|
/* get the handle object */
|
||||||
if (NULL == (hdl = (orte_db_handle_t*)opal_pointer_array_get_item(&orte_db_base.handles, req->dbhandle))) {
|
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) {
|
if (NULL != hdl->module->commit) {
|
||||||
hdl->module->commit((struct orte_db_base_module_t*)hdl->module);
|
hdl->module->commit((struct orte_db_base_module_t*)hdl->module);
|
||||||
rc = ORTE_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
found:
|
found:
|
||||||
|
@ -52,7 +52,7 @@ int orte_ess_base_proc_binding(void)
|
|||||||
struct hwloc_topology_support *support;
|
struct hwloc_topology_support *support;
|
||||||
char *map;
|
char *map;
|
||||||
int ret;
|
int ret;
|
||||||
char *error;
|
char *error=NULL;
|
||||||
hwloc_cpuset_t mycpus;
|
hwloc_cpuset_t mycpus;
|
||||||
opal_value_t kv;
|
opal_value_t kv;
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user