Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions orte/mca/plm/isolated/plm_isolated.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* reserved.
* Copyright (c) 2008-2009 Sun Microsystems, Inc. All rights reserved.
* Copyright (c) 2011 IBM Corporation. All rights reserved.
* Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
* Copyright (c) 2017 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
Expand Down Expand Up @@ -52,7 +52,7 @@

static int isolated_init(void);
static int isolated_launch(orte_job_t *jdata);
static int remote_spawn();
static int remote_spawn(void);
static int isolated_terminate_orteds(void);
static int isolated_finalize(void);

Expand Down Expand Up @@ -95,7 +95,7 @@ static int isolated_init(void)
/*
* launch a set of daemons from a remote daemon
*/
static int remote_spawn()
static int remote_spawn(void)
{
/* unused function in this mode */
return ORTE_SUCCESS;
Expand Down
4 changes: 2 additions & 2 deletions orte/mca/plm/rsh/plm_rsh_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* reserved.
* Copyright (c) 2008-2009 Sun Microsystems, Inc. All rights reserved.
* Copyright (c) 2011-2017 IBM Corporation. All rights reserved.
* Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
* Copyright (c) 2015-2017 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
Expand Down Expand Up @@ -784,7 +784,7 @@ static void ssh_child(int argc, char **argv)
/*
* launch a set of daemons from a remote daemon
*/
static int remote_spawn()
static int remote_spawn(void)
{
int node_name_index1;
int proc_vpid_index;
Expand Down