root/ompi/mca/io/romio321/romio/adio/ad_nfs/ad_nfs_done.c

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

DEFINITIONS

This source file includes following definitions.
  1. ADIOI_NFS_ReadDone
  2. ADIOI_NFS_WriteDone

   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
   2 /* 
   3  *   Copyright (C) 1997 University of Chicago. 
   4  *   See COPYRIGHT notice in top-level directory.
   5  */
   6 
   7 #include "ad_nfs.h"
   8 
   9 int ADIOI_NFS_ReadDone(ADIO_Request *request, ADIO_Status *status,
  10                        int *error_code)
  11 {
  12         *error_code = MPI_SUCCESS;
  13         return 1;
  14 }
  15 int ADIOI_NFS_WriteDone(ADIO_Request *request, ADIO_Status *status,
  16                         int *error_code)
  17 {
  18     return ADIOI_NFS_ReadDone(request, status, error_code);
  19 } 

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