GenericSpawn.h 404 Bytes
Newer Older
1
2
3
4
5
6
#ifndef MALLEABILITY_GENERIC_SPAWN_H
#define MALLEABILITY_GENERIC_SPAWN_H

#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
7
#include "Spawn_DataStructure.h"
8

iker_martin's avatar
iker_martin committed
9
int init_spawn(MPI_Comm comm, MPI_Comm *child);
10
int check_spawn_state(MPI_Comm *child, MPI_Comm comm, int wait_completed);
11
void malleability_connect_children(MPI_Comm *parents);
12

13

14
void unset_spawn_postpone_flag(int outside_state);
15
16

#endif