summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/utility/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/utility/thread.c')
-rw-r--r--src/third_party/wiredtiger/test/utility/thread.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/utility/thread.c b/src/third_party/wiredtiger/test/utility/thread.c
index 45d1bc5f420..c785ba75bce 100644
--- a/src/third_party/wiredtiger/test/utility/thread.c
+++ b/src/third_party/wiredtiger/test/utility/thread.c
@@ -33,6 +33,10 @@
* variable length column stores. One thread (the first thread created by an application) checks for
* a terminating condition after each insert.
*/
+/*
+ * thread_append --
+ * TODO: Add a comment describing this function.
+ */
WT_THREAD_RET
thread_append(void *arg)
{
@@ -81,6 +85,10 @@ thread_append(void *arg)
/*
* Handle errors that generated by series of functions below that we can safely ignore.
*/
+/*
+ * handle_op_error --
+ * TODO: Add a comment describing this function.
+ */
int
handle_op_error(WT_EVENT_HANDLER *handler, WT_SESSION *session, int error, const char *errmsg)
{
@@ -104,6 +112,10 @@ handle_op_error(WT_EVENT_HANDLER *handler, WT_SESSION *session, int error, const
/*
* Handle messages generated by the functions below that we can safely ignore.
*/
+/*
+ * handle_op_message --
+ * TODO: Add a comment describing this function.
+ */
int
handle_op_message(WT_EVENT_HANDLER *handler, WT_SESSION *session, const char *message)
{
@@ -120,6 +132,10 @@ handle_op_message(WT_EVENT_HANDLER *handler, WT_SESSION *session, const char *me
/*
* Create a table and open a bulk cursor on it.
*/
+/*
+ * op_bulk --
+ * TODO: Add a comment describing this function.
+ */
void
op_bulk(void *arg)
{
@@ -154,6 +170,10 @@ op_bulk(void *arg)
/*
* Create a guaranteed unique table and open and close a bulk cursor on it.
*/
+/*
+ * op_bulk_unique --
+ * TODO: Add a comment describing this function.
+ */
void
op_bulk_unique(void *arg)
{
@@ -207,6 +227,10 @@ op_bulk_unique(void *arg)
/*
* Open and close cursor on a table.
*/
+/*
+ * op_cursor --
+ * TODO: Add a comment describing this function.
+ */
void
op_cursor(void *arg)
{
@@ -243,6 +267,10 @@ op_cursor(void *arg)
/*
* Create a table.
*/
+/*
+ * op_create --
+ * TODO: Add a comment describing this function.
+ */
void
op_create(void *arg)
{
@@ -267,6 +295,10 @@ op_create(void *arg)
/*
* Create and drop a unique guaranteed table.
*/
+/*
+ * op_create_unique --
+ * TODO: Add a comment describing this function.
+ */
void
op_create_unique(void *arg)
{
@@ -308,6 +340,10 @@ op_create_unique(void *arg)
/*
* Drop a table.
*/
+/*
+ * op_drop --
+ * TODO: Add a comment describing this function.
+ */
void
op_drop(void *arg)
{