1
1

Add a stupid, useless const since someone put it in the odls.h file.

This commit was SVN r12054.
Этот коммит содержится в:
Ralph Castain 2006-10-07 01:42:23 +00:00
родитель 51b2a0fd3f
Коммит ee0df85ece
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -55,7 +55,7 @@ int orte_odls_default_finalize(void);
int orte_odls_default_subscribe_launch_data(orte_jobid_t job, orte_gpr_notify_cb_fn_t cbfunc);
int orte_odls_default_launch_local_procs(orte_gpr_notify_data_t *data);
int orte_odls_default_kill_local_procs(orte_jobid_t job, bool set_state);
int orte_odls_default_signal_local_procs(orte_process_name_t *proc,
int orte_odls_default_signal_local_procs(const orte_process_name_t *proc,
int32_t signal);
/**

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

@ -978,7 +978,7 @@ static int send_signal(pid_t pid, int signal)
return rc;
}
int orte_odls_default_signal_local_procs(orte_process_name_t *proc, int32_t signal)
int orte_odls_default_signal_local_procs(const orte_process_name_t *proc, int32_t signal)
{
int rc;
opal_list_item_t *item;
@ -1010,7 +1010,7 @@ int orte_odls_default_signal_local_procs(orte_process_name_t *proc, int32_t sign
item != opal_list_get_end(&orte_odls_default.children);
item = opal_list_get_next(item)) {
child = (odls_default_child_t*)item;
if (ORTE_EQUAL == orte_dss.compare(&(child->name), proc, ORTE_NAME)) {
if (ORTE_EQUAL == orte_dss.compare(&(child->name), (orte_process_name_t*)proc, ORTE_NAME)) {
/* unlock before signaling as this may generate a callback */
opal_condition_signal(&orte_odls_default.cond);
OPAL_THREAD_UNLOCK(&orte_odls_default.mutex);