source: CIVL/text/include/comm.cvh@ 0e052af2

1.23 2.0 main test-branch
Last change on this file since 0e052af2 was 4d9f19e, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

used linkage for libraries comm/concurrency/mpi. other libraries will be modified soon. Everything works now, except for some mpi-civl examples that use CMPI_Gcomm, which needs to be factored out to some civl-mpi library, say civlmpi.cvh.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1447 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 390 bytes
RevLine 
[4208097]1/* This header file contains the data types and function prototypes for communication. */
2
3#ifdef __COMM__
4#else
5#define __COMM__
6
7#include <comm-common.cvh>
[4d9f19e]8#include <bundle.cvh>
9
10/* A message formed by $message_pack. Completes the declaration
11 * of this structure type in civlc-common.h */
12struct __message__ {
13 int source;
14 int dest;
15 int tag;
16 $bundle data;
17 int size;
18};
[4208097]19
20#endif
Note: See TracBrowser for help on using the repository browser.