1
1
This commit was SVN r1568.
Этот коммит содержится в:
Tim Woodall 2004-07-07 13:17:50 +00:00
родитель b973054d96
Коммит 5a829befc0

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

@ -45,9 +45,9 @@ int mca_oob_cofs_send(
/* create the file and open it... */ /* create the file and open it... */
snprintf(msg_file, OMPI_PATH_MAX, "%s/%d_%d_%d_%ld.msg", mca_oob_cofs_comm_loc, snprintf(msg_file, OMPI_PATH_MAX, "%s/%d_%d_%d_%ld.msg", mca_oob_cofs_comm_loc,
mca_oob_base_self.jobid, mca_oob_base_self.procid, peer->procid, mca_oob_cofs_serial); mca_oob_base_self.jobid, mca_oob_base_self.procid, peer->procid, (long)mca_oob_cofs_serial);
snprintf(msg_file_tmp, OMPI_PATH_MAX, "%s/.%d_%d_%d_%ld.msg", mca_oob_cofs_comm_loc, snprintf(msg_file_tmp, OMPI_PATH_MAX, "%s/.%d_%d_%d_%ld.msg", mca_oob_cofs_comm_loc,
mca_oob_base_self.jobid, mca_oob_base_self.procid, peer->procid, mca_oob_cofs_serial); mca_oob_base_self.jobid, mca_oob_base_self.procid, peer->procid, (long)mca_oob_cofs_serial);
fp = fopen(msg_file_tmp, "w"); fp = fopen(msg_file_tmp, "w");
if (fp == NULL) { if (fp == NULL) {
@ -129,7 +129,7 @@ find_match(ompi_process_id_t jobid, ompi_process_id_t procid)
{ {
DIR* dir; DIR* dir;
struct dirent *ent; struct dirent *ent;
uint64_t tmp_serial; unsigned long tmp_serial;
int tmp_jobid, tmp_procid, tmp_myprocid; int tmp_jobid, tmp_procid, tmp_myprocid;
int ret; int ret;
bool found = false; bool found = false;