1
1

Make the names friendly to doxygen

This commit was SVN r204.
Этот коммит содержится в:
Jeff Squyres 2004-01-10 17:10:29 +00:00
родитель b73dd787ab
Коммит 6e7e3d1f87
4 изменённых файлов: 12 добавлений и 12 удалений

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

@ -19,9 +19,10 @@
#define LAM_FD_SETSIZE 4096
#endif
typedef struct _lam_fd_set {
struct lam_fd_set_t {
uint32_t fds_bits[LAM_FD_SETSIZE / NFDBITS];
} lam_fd_set_t;
};
typedef struct lam_fd_set_t lam_fd_set_t;
#define LAM_FD_ZERO(fds) FD_ZERO((fd_set*)(fds))
#define LAM_FD_SET(fd,fds) FD_SET((fd),(fd_set*)(fds))

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

@ -8,8 +8,7 @@
#include "mpi.h"
#include "lam/proc.h"
typedef struct lam_group {
struct lam_group_t {
char g_name[MPI_MAX_OBJECT_NAME];
/* Processes */
@ -17,7 +16,7 @@ typedef struct lam_group {
lam_proc_t **g_procs;
size_t g_proc_count;
} lam_group_t;
};
typedef struct lam_group_t lam_group_t;
#endif /* LAM_GROUP_H */

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

@ -7,11 +7,11 @@
#include "mpi.h"
typedef struct lam_info {
struct lam_info_t {
char i_name[MPI_MAX_OBJECT_NAME];
/* ...more stuff... */
} lam_info_t;
};
typedef struct lam_info_t lam_info_t;
#endif /* LAM_INFO_H */

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

@ -7,11 +7,11 @@
#include "mpi.h"
typedef struct lam_op {
struct lam_op_t {
char o_name[MPI_MAX_OBJECT_NAME];
/* ...more stuff... */
} lam_op_t;
};
typedef struct lam_op_t lam_op_t;
#endif /* LAM_OP_H */