From cd6be89d0d673545f9f646c9b910e1e848de4051 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 18 Mar 2004 18:04:50 +0000 Subject: [PATCH] changed "struct lam_datatype_t" to lam_datatype_t This commit was SVN r917. --- src/mca/pml/pml.h | 12 ++++++------ src/mca/pml/teg/src/pml_teg.h | 12 ++++++------ src/mca/pml/teg/src/pml_teg_irecv.c | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/mca/pml/pml.h b/src/mca/pml/pml.h index d59c2a4c72..5e4ee338e2 100644 --- a/src/mca/pml/pml.h +++ b/src/mca/pml/pml.h @@ -82,7 +82,7 @@ typedef int (*mca_pml_base_progress_fn_t)(void); typedef int (*mca_pml_base_irecv_init_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -92,7 +92,7 @@ typedef int (*mca_pml_base_irecv_init_fn_t)( typedef int (*mca_pml_base_irecv_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -102,7 +102,7 @@ typedef int (*mca_pml_base_irecv_fn_t)( typedef int (*mca_pml_base_recv_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -112,7 +112,7 @@ typedef int (*mca_pml_base_recv_fn_t)( typedef int (*mca_pml_base_isend_init_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, @@ -123,7 +123,7 @@ typedef int (*mca_pml_base_isend_init_fn_t)( typedef int (*mca_pml_base_isend_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, @@ -134,7 +134,7 @@ typedef int (*mca_pml_base_isend_fn_t)( typedef int (*mca_pml_base_send_fn_t)( void *buf, size_t count, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, diff --git a/src/mca/pml/teg/src/pml_teg.h b/src/mca/pml/teg/src/pml_teg.h index ab0709a9eb..7ab6819a5b 100644 --- a/src/mca/pml/teg/src/pml_teg.h +++ b/src/mca/pml/teg/src/pml_teg.h @@ -109,7 +109,7 @@ extern int mca_pml_teg_add_ptls( extern int mca_pml_teg_isend_init( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, @@ -120,7 +120,7 @@ extern int mca_pml_teg_isend_init( extern int mca_pml_teg_isend( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, @@ -131,7 +131,7 @@ extern int mca_pml_teg_isend( extern int mca_pml_teg_send( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int dst, int tag, mca_pml_base_send_mode_t mode, @@ -141,7 +141,7 @@ extern int mca_pml_teg_send( extern int mca_pml_teg_irecv_init( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -151,7 +151,7 @@ extern int mca_pml_teg_irecv_init( extern int mca_pml_teg_irecv( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -161,7 +161,7 @@ extern int mca_pml_teg_irecv( extern int mca_pml_teg_recv( void *buf, size_t size, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, diff --git a/src/mca/pml/teg/src/pml_teg_irecv.c b/src/mca/pml/teg/src/pml_teg_irecv.c index 5cc42597a1..2192bc069a 100644 --- a/src/mca/pml/teg/src/pml_teg_irecv.c +++ b/src/mca/pml/teg/src/pml_teg_irecv.c @@ -4,7 +4,7 @@ int mca_pml_teg_irecv_init( void *addr, size_t length, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -32,7 +32,7 @@ int mca_pml_teg_irecv_init( int mca_pml_teg_irecv( void *addr, size_t length, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm, @@ -70,7 +70,7 @@ int mca_pml_teg_irecv( int mca_pml_teg_recv( void *addr, size_t length, - struct lam_datatype_t *datatype, + lam_datatype_t *datatype, int src, int tag, struct lam_communicator_t* comm,