root/ompi/mca/io/romio321/romio/adio/ad_pvfs2/ad_pvfs2.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
   2 /* 
   3  *
   4  *   Copyright (C) 2003 University of Chicago. 
   5  *   See COPYRIGHT notice in top-level directory.
   6  */
   7 
   8 #include "ad_pvfs2.h"
   9 
  10 #include "adio.h"
  11 
  12 struct ADIOI_Fns_struct ADIO_PVFS2_operations = {
  13     ADIOI_PVFS2_Open, /* Open */
  14     ADIOI_SCALEABLE_OpenColl, /* OpenColl */
  15     ADIOI_PVFS2_ReadContig, /* ReadContig */
  16     ADIOI_PVFS2_WriteContig, /* WriteContig */
  17     ADIOI_GEN_ReadStridedColl, /* ReadStridedColl */
  18     ADIOI_GEN_WriteStridedColl, /* WriteStridedColl */
  19     ADIOI_GEN_SeekIndividual, /* SeekIndividual */
  20     ADIOI_PVFS2_Fcntl, /* Fcntl */
  21     ADIOI_PVFS2_SetInfo, /* SetInfo */
  22     ADIOI_PVFS2_ReadStrided, /* ReadStrided */
  23     ADIOI_PVFS2_WriteStrided, /* WriteStrided */
  24     ADIOI_PVFS2_Close, /* Close */
  25 #ifdef HAVE_MPI_GREQUEST_EXTENSIONS
  26     ADIOI_PVFS2_IReadContig, /* IreadContig */
  27     ADIOI_PVFS2_IWriteContig, /* IwriteContig */
  28 #else
  29     ADIOI_FAKE_IreadContig, /* IreadContig */
  30     ADIOI_FAKE_IwriteContig, /* IwriteContig */
  31 #endif
  32     ADIOI_FAKE_IODone, /* ReadDone */
  33     ADIOI_FAKE_IODone, /* WriteDone */
  34     ADIOI_FAKE_IOComplete, /* ReadComplete */
  35     ADIOI_FAKE_IOComplete, /* WriteComplete */
  36     ADIOI_FAKE_IreadStrided, /* IreadStrided */
  37     ADIOI_FAKE_IwriteStrided, /* IwriteStrided */
  38     ADIOI_PVFS2_Flush, /* Flush */
  39     ADIOI_PVFS2_Resize, /* Resize */
  40     ADIOI_PVFS2_Delete, /* Delete */
  41     ADIOI_PVFS2_Feature,
  42     "PVFS2: the PVFS v2 or OrangeFS file systems",
  43     ADIOI_GEN_IreadStridedColl, /* IreadStridedColl */
  44     ADIOI_GEN_IwriteStridedColl /* IwriteStridedColl */
  45 };
  46 
  47 /* 
  48  * vim: ts=8 sts=4 sw=4 noexpandtab 
  49  */

/* [<][>][^][v][top][bottom][index][help] */