00001 /* 00002 BSPonMPI. This is an implementation of the BSPlib standard on top of MPI 00003 Copyright (C) 2006 Wijnand J. Suijlen 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 You may contact me via electronic mail: 00020 wjsuijle@users.sourceforge.net 00021 or snail mail: 00022 W.J. Suijlen 00023 Kraaiheidelaan 10 00024 2803 VP Gouda 00025 The Netherlands 00026 */ 00027 00034 #ifndef BSP_PRIVATE_H 00035 #define BSP_PRIVATE_H 00036 00037 #include "bsp_exptable.h" 00038 #include <mpi.h> 00039 00041 typedef struct _BSPObject 00042 { 00043 double begintime; 00044 int nprocs; 00045 int rank; 00047 MPI_Comm communicator; 00051 ExpandableTable delivery_table; 00053 ExpandableTable delivery_received_table; 00055 ExpandableTable request_table; 00057 ExpandableTable request_received_table; 00060 ExpandableTable memory_register; 00063 MessageQueue message_queue; 00064 00065 } BSPObject; 00066 00067 00069 static BSPObject bsp; 00070 00071 #endif