Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.
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
2 changes: 1 addition & 1 deletion orte/test/system/binom.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void construct(orte_routed_tree_t *rt)
rt->vpid = ORTE_VPID_INVALID;
OBJ_CONSTRUCT(&rt->relatives, opal_bitmap_t);
}
static destruct(orte_routed_tree_t *rt)
static void destruct(orte_routed_tree_t *rt)
{
OBJ_DESTRUCT(&rt->relatives);
}
Expand Down
1 change: 1 addition & 0 deletions orte/test/system/mapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*/

#include <stdio.h>
#include <ctype.h>

#include "orte/constants.h"

Expand Down
4 changes: 2 additions & 2 deletions orte/test/system/opal-evpri-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include <signal.h>
#include <stdbool.h>

#include "opal/runtime/opal.h"
#include "opal/mca/event/event.h"

#include "orte/mca/state/state_types.h"

#define SIGPRI 0
Expand Down Expand Up @@ -62,7 +62,7 @@ main(int argc, char **argv)
opal_event_t ev1, ev2;
orte_state_caddy_t *caddy;

opal_init();
opal_init(&argc, &argv);

/* assign some signal traps */
if (opal_event_signal_set(orte_event_base, &ev1, SIGTERM, cbfunc, &ev1) < 0) {
Expand Down
2 changes: 1 addition & 1 deletion orte/test/system/opal_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main(int argc, char* argv[])

if (OPAL_SUCCESS != mca_base_framework_open(&opal_if_base_framework, 0)) {
fprintf(stderr, "opal_interface: couldn't get interfaces\n");
return;
return 1;
}

for (intf = (opal_if_t*)opal_list_get_first(&opal_if_list);
Expand Down
2 changes: 1 addition & 1 deletion orte/test/system/radix.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int down_search(int me, int num_procs,
}
}

main(int argc, char **argv)
int main(int argc, char **argv)
{
opal_list_t children;
opal_list_item_t *item;
Expand Down
2 changes: 1 addition & 1 deletion orte/test/system/regex.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "orte/mca/errmgr/errmgr.h"
#include "orte/runtime/runtime.h"

main(int argc, char **argv)
int main(int argc, char **argv)
{
int rc;
char *regex, *save;
Expand Down