File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 12
12
* Copyright (c) 2009-2016 Cisco Systems, Inc. All rights reserved.
13
13
* Copyright (c) 2012 Los Alamos National Security, LLC.
14
14
* All rights reserved.
15
- * Copyright (c) 2014-2016 Intel, Inc. All rights reserved
15
+ * Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
16
16
* Copyright (c) 2016 IBM Corporation. All rights reserved.
17
17
* $COPYRIGHT$
18
18
*
@@ -69,7 +69,6 @@ ORTE_DECLSPEC orte_proc_info_t orte_process_info = {
69
69
.aliases = NULL ,
70
70
.pid = 0 ,
71
71
.proc_type = ORTE_PROC_TYPE_NONE ,
72
- .sync_buf = NULL ,
73
72
.my_port = 0 ,
74
73
.num_restarts = 0 ,
75
74
.my_node_rank = ORTE_NODE_RANK_INVALID ,
@@ -265,9 +264,6 @@ int orte_proc_info(void)
265
264
& orte_ess_node_rank );
266
265
orte_process_info .my_node_rank = (orte_node_rank_t ) orte_ess_node_rank ;
267
266
268
- /* setup the sync buffer */
269
- orte_process_info .sync_buf = OBJ_NEW (opal_buffer_t );
270
-
271
267
return ORTE_SUCCESS ;
272
268
}
273
269
@@ -330,9 +326,6 @@ int orte_proc_info_finalize(void)
330
326
331
327
orte_process_info .proc_type = ORTE_PROC_TYPE_NONE ;
332
328
333
- OBJ_RELEASE (orte_process_info .sync_buf );
334
- orte_process_info .sync_buf = NULL ;
335
-
336
329
OBJ_DESTRUCT (& orte_process_info .super );
337
330
338
331
opal_argv_free (orte_process_info .aliases );
Original file line number Diff line number Diff line change 11
11
* All rights reserved.
12
12
* Copyright (c) 2011-2012 Los Alamos National Security, LLC.
13
13
* All rights reserved.
14
- * Copyright (c) 2013-2016 Intel, Inc. All rights reserved
14
+ * Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
15
15
* Copyright (c) 2017 Cisco Systems, Inc. All rights reserved
16
16
* $COPYRIGHT$
17
17
*
@@ -99,7 +99,6 @@ struct orte_proc_info_t {
99
99
char * * aliases ; /**< aliases for this node */
100
100
pid_t pid ; /**< Local process ID for this process */
101
101
orte_proc_type_t proc_type ; /**< Type of process */
102
- opal_buffer_t * sync_buf ; /**< buffer to store sync response */
103
102
uint16_t my_port ; /**< TCP port for out-of-band comm */
104
103
int num_restarts ; /**< number of times this proc has restarted */
105
104
orte_node_rank_t my_node_rank ; /**< node rank */
You can’t perform that action at this time.
0 commit comments