50 строки
1.5 KiB
C
50 строки
1.5 KiB
C
![]() |
/*
|
||
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
||
|
* University Research and Technology
|
||
|
* Corporation. All rights reserved.
|
||
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
||
|
* of Tennessee Research Foundation. All rights
|
||
|
* reserved.
|
||
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
||
|
* University of Stuttgart. All rights reserved.
|
||
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
||
|
* All rights reserved.
|
||
|
* Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
|
||
|
* Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
||
|
* $COPYRIGHT$
|
||
|
*
|
||
|
* Additional copyrights may follow
|
||
|
*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#include "ompi_config.h"
|
||
|
|
||
|
#ifdef HAVE_SYS_TIME_H
|
||
|
#include <sys/time.h>
|
||
|
#endif
|
||
|
#ifdef HAVE_UNISTD_H
|
||
|
#include <unistd.h>
|
||
|
#endif
|
||
|
|
||
|
#include "opal/class/opal_object.h"
|
||
|
#include "ompi/file/file.h"
|
||
|
#include "opal/mca/base/base.h"
|
||
|
#include "ompi/mca/io/base/base.h"
|
||
|
#include "ompi/mca/io/base/io_base_request.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Private functions
|
||
|
*/
|
||
|
static void io_base_request_constructor(mca_io_base_request_t *req)
|
||
|
{
|
||
|
req->super.req_type = OMPI_REQUEST_IO;
|
||
|
req->free_called = false;
|
||
|
}
|
||
|
|
||
|
OBJ_CLASS_INSTANCE(mca_io_base_request_t,
|
||
|
ompi_request_t,
|
||
|
io_base_request_constructor,
|
||
|
NULL);
|