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

Fix grammar #3635

Merged
merged 1 commit into from
Oct 5, 2023
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
6 changes: 3 additions & 3 deletions src/H5FDsubfiling/H5FDioc_threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ typedef struct ioc_data_t {
hg_thread_pool_t *io_thread_pool;
int64_t sf_context_id;

/* sf_io_ops_pending is use to track the number of I/O operations pending so that we can wait
atomic_int sf_ioc_ready;
atomic_int sf_shutdown_flag;
/* sf_io_ops_pending tracks the number of I/O operations pending so that we can wait
* until all I/O operations have been serviced before shutting down the worker thread pool.
* The value of this variable must always be non-negative.
*
* Note that this is a convenience variable -- we could use io_queue.q_len instead.
* However, accessing this field requires locking io_queue.q_mutex.
*/
atomic_int sf_ioc_ready;
atomic_int sf_shutdown_flag;
atomic_int sf_io_ops_pending;
atomic_int sf_work_pending;
} ioc_data_t;
Expand Down