⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 io_romio_ad_nfs_done.c

📁 MPI stands for the Message Passing Interface. Written by the MPI Forum (a large committee comprising
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*  *   Copyright (C) 1997 University of Chicago.  *   See COPYRIGHT notice in top-level directory. */#include "ad_nfs.h"int ADIOI_NFS_ReadDone(ADIO_Request *request, ADIO_Status *status,		       int *error_code){#ifdef ROMIO_HAVE_WORKING_AIO    int done=0;    int err;    static char myname[] = "ADIOI_NFS_READDONE";#ifdef ROMIO_HAVE_STRUCT_AIOCB_WITH_AIO_HANDLE    struct aiocb *tmp1;#endif#endif    if (*request == ADIO_REQUEST_NULL) {	*error_code = MPI_SUCCESS;	return 1;    }#ifndef ROMIO_HAVE_WORKING_AIO# ifdef HAVE_STATUS_SET_BYTES    MPIR_Status_set_bytes(status, (*request)->datatype, (*request)->nbytes);# endif    (*request)->fd->async_count--;    ADIOI_Free_request((ADIOI_Req_node *) (*request));    *request = ADIO_REQUEST_NULL;    *error_code = MPI_SUCCESS;    return 1;#else#ifndef ROMIO_HAVE_STRUCT_AIOCB_WITH_AIO_FILDES/* old IBM API */    if ((*request)->queued) {	tmp1 = (struct aiocb *) (*request)->handle;	errno = aio_error(tmp1->aio_handle);	if (errno == EINPROG) {	    done = 0;	    *error_code = MPI_SUCCESS;	}	else {	    err = aio_return(tmp1->aio_handle);	    (*request)->nbytes = err;	    errno = aio_error(tmp1->aio_handle);		    done = 1;	    if (err == -1) {		*error_code = MPIO_Err_create_code(MPI_SUCCESS,						   MPIR_ERR_RECOVERABLE,						   myname, __LINE__,						   MPI_ERR_IO, "**io",						   "**io %s", strerror(errno));	    }	    else *error_code = MPI_SUCCESS;	}    }    else {	done = 1;	*error_code = MPI_SUCCESS;    }#ifdef HAVE_STATUS_SET_BYTES    if (done && ((*request)->nbytes != -1))	MPIR_Status_set_bytes(status, (*request)->datatype, (*request)->nbytes);#endif#else /* everything other than old IBM */    if ((*request)->queued) {	errno = aio_error((const struct aiocb *) (*request)->handle);	if (errno == EINPROGRESS) {	    done = 0;	    *error_code = MPI_SUCCESS;	}	else {	    err = aio_return((struct aiocb *) (*request)->handle); 	    (*request)->nbytes = err;	    errno = aio_error((struct aiocb *) (*request)->handle);	    done = 1;	    if (err == -1) {		*error_code = MPIO_Err_create_code(MPI_SUCCESS,						   MPIR_ERR_RECOVERABLE,						   myname, __LINE__,						   MPI_ERR_IO, "**io",						   "**io %s", strerror(errno));	    }	    else *error_code = MPI_SUCCESS;	}    }    else {	done = 1;	*error_code = MPI_SUCCESS;    }#ifdef HAVE_STATUS_SET_BYTES    if (done && ((*request)->nbytes != -1))	MPIR_Status_set_bytes(status, (*request)->datatype, (*request)->nbytes);#endif#endif    if (done) {	/* if request is still queued in the system, it is also there           on ADIOI_Async_list. Delete it from there. */	if ((*request)->queued) ADIOI_Del_req_from_list(request);	(*request)->fd->async_count--;	if ((*request)->handle) ADIOI_Free((*request)->handle);	ADIOI_Free_request((ADIOI_Req_node *) (*request));	*request = ADIO_REQUEST_NULL;    }    return done;#endif}int ADIOI_NFS_WriteDone(ADIO_Request *request, ADIO_Status *status,			int *error_code){    return ADIOI_NFS_ReadDone(request, status, error_code);} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -