changed "struct lam_datatype_t" to lam_datatype_t
This commit was SVN r917.
Этот коммит содержится в:
родитель
c8ee802625
Коммит
cd6be89d0d
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user