Skip to content

Commit

Permalink
Merge pull request #503 from abouteiller/issue421/pmix_iof_cbfunc_arg…
Browse files Browse the repository at this point in the history
…_type@v4

Issue421/pmix iof cbfunc arg type@v4
  • Loading branch information
abouteiller authored Mar 13, 2024
2 parents 70655d2 + c07d6a8 commit 2df088a
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 @@ -4193,7 +4193,7 @@ \subsubsection{IOF delivery function}
\begin{codepar}
typedef void (*pmix_iof_cbfunc_t)(
size_t iofhdlr, pmix_iof_channel_t channel,
pmix_proc_t *source, char *payload,
pmix_proc_t *source, pmix_byte_object_t *payload,
pmix_info_t info[], size_t ninfo);
\end{codepar}
\cspecificend
Expand All @@ -4202,7 +4202,7 @@ \subsubsection{IOF delivery function}
\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 2df088a

Please sign in to comment.