Statistics
| Branch: | Revision:

root / synthbench / skampi / output.h

History | View | Annotate | Download (1 kB)

1
/* SKaMPI   MPI-Benchmark
2

3
Copyright 2003-2008 Werner Augustin
4
Lehrstuhl Informatik fuer Naturwissenschaftler und Ingenieure 
5
Fakultaet fuer Informatik
6
University of Karlsruhe
7

8
This program is free software; you can redistribute it and/or modify
9
it under the terms of version 2 of the GNU General Public License as
10
published by the Free Software Foundation
11

12
This program is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
GNU General Public License for more details.
16

17
You should have received a copy of the GNU General Public License
18
along with this program; if not, write to the Free Software
19
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
20

    
21
void set_output_file(FILE *f);
22
void init_output(void);
23
int get_output_rank(void);
24
void print_output(char *fmt, ...);
25
void flush_output(void);
26

    
27
void mpi_abort(int errorcode);
28
void error_without_abort(char *fmt, ...);
29
void error_with_abort(int errorcode, char *fmt, ...);
30

    
31