1
1

initialize grp_ok_to_free for group_emty, and group_null.

Reviewed by Edgar G.

This commit was SVN r1130.
Этот коммит содержится в:
Rich Graham 2004-05-11 22:04:39 +00:00
родитель 784693826a
Коммит d08f246990

Просмотреть файл

@ -28,6 +28,7 @@ lam_group_t lam_mpi_group_empty = {
0, /* number of processes in group */
MPI_PROC_NULL, /* rank in group */
LAM_ERROR, /* index in Fortran <-> C translation array */
false, /* can't free group */
(lam_proc_t **)NULL /* pointers to lam_proc_t structures */
};
@ -40,6 +41,7 @@ lam_group_t lam_mpi_group_null = {
0, /* number of processes in group */
MPI_PROC_NULL, /* rank in group */
LAM_ERROR, /* index in Fortran <-> C translation array */
false, /* can't free group */
(lam_proc_t **)NULL /* pointers to lam_proc_t structures */
};