1
1

These 2 ORTE_DECLSPEC are not required.

This commit was SVN r13825.
Этот коммит содержится в:
George Bosilca 2007-02-27 15:45:40 +00:00
родитель d8a369936e
Коммит 4bab882d17
2 изменённых файлов: 5 добавлений и 5 удалений

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

@ -46,10 +46,10 @@ static void orte_pls_daemon_info_destructor(orte_pls_daemon_info_t* ptr)
if (NULL != ptr->nodename) free(ptr->nodename);
if (NULL != ptr->name) free(ptr->name);
}
ORTE_DECLSPEC OBJ_CLASS_INSTANCE(orte_pls_daemon_info_t, /* type name */
opal_list_item_t, /* parent "class" name */
orte_pls_daemon_info_construct, /* constructor */
orte_pls_daemon_info_destructor); /* destructor */
OBJ_CLASS_INSTANCE(orte_pls_daemon_info_t, /* type name */
opal_list_item_t, /* parent "class" name */
orte_pls_daemon_info_construct, /* constructor */
orte_pls_daemon_info_destructor); /* destructor */
/*
* Store the active daemons for a job

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

@ -61,7 +61,7 @@ typedef uint8_t orte_pls_cmd_flag_t;
/*
* object for daemon information
*/
ORTE_DECLSPEC typedef struct orte_pls_daemon_info_t {
typedef struct orte_pls_daemon_info_t {
opal_list_item_t super;
orte_cellid_t cell;
char *nodename;