
00001 /* -*- Mode: C; c-basic-offset:4 ; -*- */ 00002 /* 00003 * $Id$ 00004 * 00005 * Copyright (C) 1997 University of Chicago. 00006 * See COPYRIGHT notice in top-level directory. 00007 */ 00008 00009 00010 /* header file for MPI-IO implementation. not intended to be 00011 user-visible */ 00012 00013 #ifndef MPIOIMPL_INCLUDE 00014 #define MPIOIMPL_INCLUDE 00015 00016 #include "mpio.h" 00017 #include "adio.h" 00018 00019 /* info is a linked list of these structures */ 00020 struct MPIR_Info { 00021 int cookie; 00022 char *key, *value; 00023 struct MPIR_Info *next; 00024 }; 00025 00026 #define MPIR_INFO_COOKIE 5835657 00027 00028 MPI_Delete_function ADIOI_End_call; 00029 00030 #include "mpioprof.h" 00031 00032 #ifdef MPI_hpux 00033 # include "mpioinst.h" 00034 #endif /* MPI_hpux */ 00035 00036 #endif 00037
1.5.5