00001 /* -*- Mode: C; c-basic-offset:4 ; -*- */ 00002 /* 00003 * 00004 * Copyright (C) 2004 University of Chicago. 00005 * See COPYRIGHT notice in top-level directory. 00006 */ 00007 00008 #include "adio.h" 00009 00010 /* Generic implementation of ReadComplete/WriteComplete simply sets the 00011 * bytes field in the status structure and frees the request. 00012 * 00013 * Same function is used for both reads and writes. 00014 */ 00015 void ADIOI_FAKE_IOComplete(ADIO_Request *request, ADIO_Status *status, 00016 int *error_code) 00017 { 00018 *error_code = MPI_SUCCESS; 00019 return; 00020 }