blob: a22a50bae68818589dfda21da6fc50b3f616542d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -----------------------------------------------------------------------------
* ParInit.h,1
*
* Phil Trinder
* July 1998
*
* External Parallel Initialisation Interface
*
* ---------------------------------------------------------------------------*/
#ifndef PARINIT_H
#define PARINIT_H
extern void RunParallelSystem (P_);
extern void initParallelSystem(void);
extern void SynchroniseSystem(void);
extern void par_exit(I_);
#endif /* PARINIT_H */
|