Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS: fix thread mode description #977

Merged
merged 1 commit into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ucc/api/ucc.h
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ typedef enum {
*
* @ref ucc_thread_mode_t is used to initialize the UCC library’s thread mode.
* The UCC library can be configured in three thread modes UCC_THREAD_SINGLE,
* UCC_THREAD_FUNNELED, and UCC_LIB_THREAD_MULTIPLE. In the UCC_THREAD_SINGLE
* UCC_THREAD_FUNNELED, and UCC_THREAD_MULTIPLE. In the UCC_THREAD_SINGLE
* mode, the user program must not be multithreaded. In the UCC_THREAD_FUNNELED
* mode, the user program may be multithreaded. However, all UCC interfaces
* should be invoked from the same thread. In the UCC_THREAD_MULTIPLE mode, the
Expand Down
Loading