Skip to content

Commit

Permalink
Merge pull request #486 from dsolt/issue_421_pmix_iof_cbfunc_t_arg_type
Browse files Browse the repository at this point in the history
Errata: Type of callback pmix_iof_cbfunc_t parameter payload should b…
  • Loading branch information
abouteiller authored Jan 25, 2024
2 parents bae6a2c + 8554707 commit b5e6dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chap_API_Server.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3989,15 +3989,15 @@ \subsubsection{IOF delivery function}
\copySignature{pmix_iof_cbfunc_t}{3.0}{
typedef void (*pmix_iof_cbfunc_t)( \\
\hspace*{20\sigspace}size_t iofhdlr, pmix_iof_channel_t channel, \\
\hspace*{20\sigspace}pmix_proc_t *source, char *payload, \\
\hspace*{20\sigspace}pmix_proc_t *source, pmix_byte_object_t *payload, \\
\hspace*{20\sigspace}pmix_info_t info[], size_t ninfo);
}

\begin{arglist}
\argin{iofhdlr}{Registration number of the handler being invoked (\code{size_t})}
\argin{channel}{bitmask identifying the channel the data arrived on (\refstruct{pmix_iof_channel_t})}
\argin{source}{Pointer to a \refstruct{pmix_proc_t} identifying the namespace/rank of the process that generated the data (\code{char*})}
\argin{payload}{Pointer to character array containing the data.}
\argin{payload}{Pointer to a \refstruct{pmix_byte_object_t} that describes the character array containing the data.}
\argin{info}{Array of \refstruct{pmix_info_t} provided by the source containing metadata about the payload. This could include \refattr{PMIX_IOF_COMPLETE} (handle)}
\argin{ninfo}{Number of elements in \refarg{info} (\code{size_t})}
\end{arglist}
Expand Down

0 comments on commit b5e6dc8

Please sign in to comment.