GenericSpawn.h 419 Bytes
Newer Older
iker_martin's avatar
iker_martin committed
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"
iker_martin's avatar
iker_martin committed
8

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


void unset_spawn_postpone_flag(int outside_state);

#endif