summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c')
-rw-r--r--src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c b/src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c
index 5b251da0fb2..6e49a950eb1 100644
--- a/src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c
+++ b/src/third_party/wiredtiger/test/csuite/wt6616_checkpoint_oldest_ts/main.c
@@ -72,6 +72,10 @@ static const char *const ckpt_file = "checkpoint_done";
static void handler(int) WT_GCC_FUNC_DECL_ATTRIBUTE((noreturn));
static void usage(void) WT_GCC_FUNC_DECL_ATTRIBUTE((noreturn));
+/*
+ * usage --
+ * TODO: Add a comment describing this function.
+ */
static void
usage(void)
{
@@ -190,6 +194,10 @@ thread_run(void *arg)
* until it is killed by the parent.
*/
static void run_workload(void) WT_GCC_FUNC_DECL_ATTRIBUTE((noreturn));
+/*
+ * run_workload --
+ * TODO: Add a comment describing this function.
+ */
static void
run_workload(void)
{
@@ -234,6 +242,10 @@ run_workload(void)
/*
* Signal handler to catch if the child died unexpectedly.
*/
+/*
+ * handler --
+ * TODO: Add a comment describing this function.
+ */
static void
handler(int sig)
{
@@ -248,6 +260,10 @@ handler(int sig)
extern int __wt_optind;
extern char *__wt_optarg;
+/*
+ * main --
+ * TODO: Add a comment describing this function.
+ */
int
main(int argc, char *argv[])
{