1
1

Correctly handle the ORTE_DECLSPEC attribute.

This commit was SVN r12041.
Этот коммит содержится в:
George Bosilca 2006-10-06 07:08:17 +00:00
родитель 422ce1d3f8
Коммит b7579b09c7
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -48,7 +48,7 @@ typedef struct orte_odls_globals_t {
int timeout_before_sigkill; int timeout_before_sigkill;
} orte_odls_globals_t; } orte_odls_globals_t;
extern orte_odls_globals_t orte_odls_globals; ORTE_DECLSPEC extern orte_odls_globals_t orte_odls_globals;
/* /*
* data type functions * data type functions

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

@ -81,7 +81,7 @@ typedef struct odls_default_child_t {
orte_std_cntr_t app_idx; /* index of the app_context for this proc */ orte_std_cntr_t app_idx; /* index of the app_context for this proc */
bool alive; /* is this proc alive? */ bool alive; /* is this proc alive? */
} odls_default_child_t; } odls_default_child_t;
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(odls_default_child_t); OBJ_CLASS_DECLARATION(odls_default_child_t);
/* /*
* List object to locally store app_contexts returned by the * List object to locally store app_contexts returned by the
@ -92,7 +92,7 @@ typedef struct odls_default_app_context_t {
opal_list_item_t super; /* required to place this on a list */ opal_list_item_t super; /* required to place this on a list */
orte_app_context_t *app_context; orte_app_context_t *app_context;
} odls_default_app_context_t; } odls_default_app_context_t;
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(odls_default_app_context_t); OBJ_CLASS_DECLARATION(odls_default_app_context_t);
/* /*
* ODLS Default module * ODLS Default module