1
1

Merge pull request #6403 from kawashima-fj/pr/man-typo-win-attach

man: fix more typos in MPI_Win_attach man page
Этот коммит содержится в:
KAWASHIMA Takahiro 2019-02-20 11:27:38 +09:00 коммит произвёл GitHub
родитель 7694ecc13f 7095ad10a5
Коммит 19cbd00db0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -1,10 +1,11 @@
.\" -*- nroff -*-
.\" Copyright (c) 2015-2019 Research Organization for Information Science
.\" and Technology (RIST). All rights reserved.
.\" Copyright (c) 2019 FUJITSU LIMITED. All rights reserved.
.\" $COPYRIGHT$
.TH MPI_Win_attach 3 "#OMPI_DATE#" "#PACKAGE_VERSION#" "#PACKAGE_NAME#"
.SH NAME
\fBMPI_Win_create, MPI_Win_detach\fP \- One-sided MPI call that attach / detach a window object for RMA operations.
\fBMPI_Win_attach, MPI_Win_detach\fP \- One-sided MPI call that attach / detach a window object for RMA operations.
.SH SYNTAX
.ft R
@ -62,7 +63,7 @@ Fortran only: Error status (integer).
.ft R
MPI_Win_attach is a one-sided MPI communication collective call executed by all processes in the group of \fIcomm\fP. It returns a window object that can be used by these processes to perform RMA operations. Each process specifies a window of existing memory that it exposes to RMA accesses by the processes in the group of \fIcomm\fP. The window consists of \fIsize\fP bytes, starting at address \fIbase\fP. A process may elect to expose no memory by specifying \fIsize\fP = 0.
.sp
If the \fIbase\fP value used by MPI_Win_create was allocated by MPI_Alloc_mem, the size of the window can be no larger than the value set by the MPI_ALLOC_MEM function.
If the \fIbase\fP value used by MPI_Win_attach was allocated by MPI_Alloc_mem, the size of the window can be no larger than the value set by the MPI_ALLOC_MEM function.
.sp
.SH NOTES