Newsgroups: comp.parallel.mpi
From: "Luca Faggioli [Chaumette]" <faggioli@labri.u-bordeaux.fr>
Subject: question on derived datatypes
Organization: CRIBX1 , Universite de Bordeaux I , France
Date: Thu, 24 Jul 1997 20:30:56 +0200
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <33D79F60.646C13E7@labri.u-bordeaux.fr>

Hi everybody,
I'm trying to understand how it works when you wanna send (in MPI) a
message that is a sequence of derived datatypes.
Now, my structure looks like (in C):

	struct IntList{
		int item;
		struct IntList *next;
        };

I know it looks trivial, but I already don't know how to go on: 
when I build the Type Map I know that the MPI Datatype for int is
MPI_INT, but what about a pointer?
Any suggestion?
Thanks
Luca

