1
1

Merge pull request #2435 from jijo733/error-correction

error correction to the MPI_file operations thread safety lock
Этот коммит содержится в:
Howard Pritchard 2016-11-19 09:24:48 -07:00 коммит произвёл GitHub
родитель 4cf1c444cb 25e138ea1d
Коммит 3da7f02724

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

@ -488,7 +488,7 @@ int mca_io_ompio_file_get_position (ompi_file_t *fd,
data = (mca_io_ompio_data_t *) fd->f_io_selected_data;
fh = &data->ompio_fh;
OPAL_THREAD_UNLOCK(&fd->f_mutex);
OPAL_THREAD_LOCK(&fd->f_mutex);
ret = mca_common_ompio_file_get_position (fh, offset);
OPAL_THREAD_UNLOCK(&fd->f_mutex);