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

/* [<][>][^][v][top][bottom][index][help] */
   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
   2 /* 
   3  *
   4  *   Copyright (C) 2001 University of Chicago. 
   5  *   See COPYRIGHT notice in top-level directory.
   6  */
   7 
   8 #include "ad_piofs.h"
   9 
  10 /* adioi.h has the ADIOI_Fns_struct define */
  11 #include "adioi.h"
  12 
  13 struct ADIOI_Fns_struct ADIO_PIOFS_operations = {
  14     ADIOI_PIOFS_Open, /* Open */
  15     ADIOI_PIOFS_ReadContig, /* ReadContig */
  16     ADIOI_PIOFS_WriteContig, /* WriteContig */
  17     ADIOI_GEN_ReadStridedColl, /* ReadStridedColl */
  18     ADIOI_GEN_WriteStridedColl, /* WriteStridedColl */
  19     ADIOI_GEN_SeekIndividual, /* SeekIndividual */
  20     ADIOI_PIOFS_Fcntl, /* Fcntl */
  21     ADIOI_PIOFS_SetInfo, /* SetInfo */
  22     ADIOI_GEN_ReadStrided, /* ReadStrided */
  23     ADIOI_PIOFS_WriteStrided, /* WriteStrided */
  24     ADIOI_GEN_Close, /* Close */
  25     ADIOI_FAKE_IreadContig, /* IreadContig */
  26     ADIOI_FAKE_IwriteContig, /* IwriteContig */
  27     ADIOI_FAKE_IODone, /* ReadDone */
  28     ADIOI_FAKE_IODone, /* WriteDone */
  29     ADIOI_FAKE_IOComplete, /* ReadComplete */
  30     ADIOI_FAKE_IOComplete, /* WriteComplete */
  31     ADIOI_FAKE_IreadStrided, /* IreadStrided */
  32     ADIOI_FAKE_IwriteStrided, /* IwriteStrided */
  33     ADIOI_GEN_Flush, /* Flush */
  34     ADIOI_GEN_Resize, /* Resize */
  35     ADIOI_GEN_Delete, /* Delete */
  36     ADIOI_PIOFS_Feature, 
  37     ADIOI_GEN_IreadStridedColl, /* IreadStridedColl */
  38     ADIOI_GEN_IwriteStridedColl /* IwriteStridedColl */
  39 };

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