2004-01-29 18:21:55 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* 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.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-15 19:31:47 +00:00
|
|
|
* $HEADER$
|
2004-01-29 18:21:55 +00:00
|
|
|
*/
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2006-01-28 15:38:37 +00:00
|
|
|
|
2004-01-29 18:21:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-08-12 16:56:24 +00:00
|
|
|
#include "info/info.h"
|
2006-01-28 15:38:37 +00:00
|
|
|
#include "win/win.h"
|
|
|
|
#include "attribute/attribute.h"
|
2004-01-29 18:21:55 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-29 18:21:55 +00:00
|
|
|
#pragma weak MPI_Win_create = PMPI_Win_create
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 18:50:43 +00:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-30 02:58:53 +00:00
|
|
|
static const char FUNC_NAME[] = "MPI_Win_create";
|
|
|
|
|
|
|
|
|
2004-01-29 18:21:55 +00:00
|
|
|
int MPI_Win_create(void *base, MPI_Aint size, int disp_unit,
|
2004-07-30 02:58:53 +00:00
|
|
|
MPI_Info info, MPI_Comm comm, MPI_Win *win)
|
|
|
|
{
|
2006-01-28 15:38:37 +00:00
|
|
|
ompi_communicator_t *ompi_comm;
|
|
|
|
ompi_win_t *ompi_win;
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
|
|
|
|
/* argument checking */
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
|
|
|
|
|
|
|
if (MPI_COMM_NULL == comm || ompi_comm_invalid (comm)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_COMM,
|
|
|
|
FUNC_NAME);
|
|
|
|
|
|
|
|
} else if (NULL == info || ompi_info_is_freed(info)) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(comm, MPI_ERR_INFO,
|
|
|
|
FUNC_NAME);
|
|
|
|
|
|
|
|
} else if (NULL == win) {
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(comm, MPI_ERR_WIN, FUNC_NAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ompi_comm = (ompi_communicator_t*) comm;
|
|
|
|
if (OMPI_COMM_IS_INTER(ompi_comm)) {
|
|
|
|
/* must be an intracommunicator */
|
|
|
|
return OMPI_ERRHANDLER_INVOKE(comm, MPI_ERR_COMM, FUNC_NAME);
|
2004-08-12 16:56:24 +00:00
|
|
|
}
|
2004-07-30 02:58:53 +00:00
|
|
|
|
2006-01-28 15:38:37 +00:00
|
|
|
/*
|
|
|
|
* Create a shell of a window
|
|
|
|
*/
|
|
|
|
ret = ompi_win_create(base, size, disp_unit, ompi_comm,
|
|
|
|
info, &ompi_win);
|
|
|
|
if (OMPI_SUCCESS != ret) return OMPI_ERRHANDLER_INVOKE(comm, MPI_ERR_WIN, FUNC_NAME);
|
|
|
|
|
|
|
|
*win = (MPI_Win) ompi_win;
|
2004-07-30 02:58:53 +00:00
|
|
|
|
2006-01-28 15:38:37 +00:00
|
|
|
return OMPI_SUCCESS;
|
2004-01-29 18:21:55 +00:00
|
|
|
}
|