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

#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>

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

12

13
void unset_spawn_postpone_flag(int outside_state);
14
15

#endif