summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/include/thread_group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/include/thread_group.h')
-rw-r--r--src/third_party/wiredtiger/src/include/thread_group.h100
1 files changed, 49 insertions, 51 deletions
diff --git a/src/third_party/wiredtiger/src/include/thread_group.h b/src/third_party/wiredtiger/src/include/thread_group.h
index e14d7afd999..f828b44daf4 100644
--- a/src/third_party/wiredtiger/src/include/thread_group.h
+++ b/src/third_party/wiredtiger/src/include/thread_group.h
@@ -6,42 +6,41 @@
* See the file LICENSE for redistribution information.
*/
-#define WT_THREAD_PAUSE 10 /* Thread pause timeout in seconds */
+#define WT_THREAD_PAUSE 10 /* Thread pause timeout in seconds */
/*
* WT_THREAD --
* Encapsulation of a thread that belongs to a thread group.
*/
struct __wt_thread {
- WT_SESSION_IMPL *session;
- u_int id;
- wt_thread_t tid;
+ WT_SESSION_IMPL *session;
+ u_int id;
+ wt_thread_t tid;
- /*
- * WT_THREAD and thread-group function flags, merged because
- * WT_THREAD_PANIC_FAIL appears in both groups.
- */
+/*
+ * WT_THREAD and thread-group function flags, merged because WT_THREAD_PANIC_FAIL appears in both
+ * groups.
+ */
/* AUTOMATIC FLAG VALUE GENERATION START */
-#define WT_THREAD_ACTIVE 0x01u /* thread is active or paused */
-#define WT_THREAD_CAN_WAIT 0x02u /* WT_SESSION_CAN_WAIT */
-#define WT_THREAD_LOOKASIDE 0x04u /* open lookaside cursor */
-#define WT_THREAD_PANIC_FAIL 0x08u /* panic if the thread fails */
-#define WT_THREAD_RUN 0x10u /* thread is running */
-/* AUTOMATIC FLAG VALUE GENERATION STOP */
- uint32_t flags;
+#define WT_THREAD_ACTIVE 0x01u /* thread is active or paused */
+#define WT_THREAD_CAN_WAIT 0x02u /* WT_SESSION_CAN_WAIT */
+#define WT_THREAD_LOOKASIDE 0x04u /* open lookaside cursor */
+#define WT_THREAD_PANIC_FAIL 0x08u /* panic if the thread fails */
+#define WT_THREAD_RUN 0x10u /* thread is running */
+ /* AUTOMATIC FLAG VALUE GENERATION STOP */
+ uint32_t flags;
- /*
- * Condition signalled when a thread becomes active. Paused
- * threads wait on this condition.
- */
- WT_CONDVAR *pause_cond;
+ /*
+ * Condition signalled when a thread becomes active. Paused threads wait on this condition.
+ */
+ WT_CONDVAR *pause_cond;
- /* The check function used by all threads. */
- bool (*chk_func)(WT_SESSION_IMPL *session);
- /* The runner function used by all threads. */
- int (*run_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
- /* The stop function used by all threads. */
- int (*stop_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
+ /* The check function used by all threads. */
+ bool (*chk_func)(WT_SESSION_IMPL *session);
+ /* The runner function used by all threads. */
+ int (*run_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
+ /* The stop function used by all threads. */
+ int (*stop_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
};
/*
@@ -49,34 +48,33 @@ struct __wt_thread {
* Encapsulation of a group of utility threads.
*/
struct __wt_thread_group {
- uint32_t alloc; /* Size of allocated group */
- uint32_t max; /* Max threads in group */
- uint32_t min; /* Min threads in group */
- uint32_t current_threads;/* Number of active threads */
+ uint32_t alloc; /* Size of allocated group */
+ uint32_t max; /* Max threads in group */
+ uint32_t min; /* Min threads in group */
+ uint32_t current_threads; /* Number of active threads */
- const char *name; /* Name */
+ const char *name; /* Name */
- WT_RWLOCK lock; /* Protects group changes */
+ WT_RWLOCK lock; /* Protects group changes */
- /*
- * Condition signalled when wanting to wake up threads that are
- * part of the group - for example when shutting down. This condition
- * can also be used by group owners to ensure state changes are noticed.
- */
- WT_CONDVAR *wait_cond;
+ /*
+ * Condition signalled when wanting to wake up threads that are part of the group - for example
+ * when shutting down. This condition can also be used by group owners to ensure state changes
+ * are noticed.
+ */
+ WT_CONDVAR *wait_cond;
- /*
- * The threads need to be held in an array of arrays, not an array of
- * structures because the array is reallocated as it grows, which
- * causes threads to loose track of their context is realloc moves the
- * memory.
- */
- WT_THREAD **threads;
+ /*
+ * The threads need to be held in an array of arrays, not an array of structures because the
+ * array is reallocated as it grows, which causes threads to loose track of their context is
+ * realloc moves the memory.
+ */
+ WT_THREAD **threads;
- /* The check function used by all threads. */
- bool (*chk_func)(WT_SESSION_IMPL *session);
- /* The runner function used by all threads. */
- int (*run_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
- /* The stop function used by all threads. May be NULL */
- int (*stop_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
+ /* The check function used by all threads. */
+ bool (*chk_func)(WT_SESSION_IMPL *session);
+ /* The runner function used by all threads. */
+ int (*run_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
+ /* The stop function used by all threads. May be NULL */
+ int (*stop_func)(WT_SESSION_IMPL *session, WT_THREAD *context);
};