We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 748d8b6 + a557c41 commit 3339e2aCopy full SHA for 3339e2a
opal/dss/dss_load_unload.c
@@ -12,6 +12,7 @@
12
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
13
* Copyright (c) 2015-2017 Research Organization for Information Science
14
* and Technology (RIST). All rights reserved.
15
+ * Copyright (c) 2018 IBM Corporation. All rights reserved.
16
* $COPYRIGHT$
17
*
18
* Additional copyrights may follow
@@ -372,6 +373,10 @@ int opal_value_unload(opal_value_t *kv,
372
373
*data = kv->data.ptr;
374
break;
375
376
+ case OPAL_VPID:
377
+ memcpy(*data, &kv->data.name.vpid, sizeof(opal_vpid_t));
378
+ break;
379
+
380
default:
381
OPAL_ERROR_LOG(OPAL_ERR_NOT_SUPPORTED);
382
return OPAL_ERR_NOT_SUPPORTED;
0 commit comments