summaryrefslogtreecommitdiffstats
path: root/c_pgms
diff options
context:
space:
mode:
authorLakshmipathi <lakshmipathi@gluster.com>2011-08-03 13:20:42 +0530
committerLakshmipathi.G <lakshmipathi@gluster.com>2011-08-03 13:20:42 +0530
commit11a0ae9f8b78008c9a00eaa9ac31a1578265464d (patch)
tree7d1d6e49357426d9b71f78c7313fcbe99a38f77f /c_pgms
parent46ba7a80670fd2e88f8dfe8f312c243b8447e1ea (diff)
separate INFO files
Diffstat (limited to 'c_pgms')
-rw-r--r--c_pgms/INFO13
1 files changed, 13 insertions, 0 deletions
diff --git a/c_pgms/INFO b/c_pgms/INFO
new file mode 100644
index 0000000..4c4c62c
--- /dev/null
+++ b/c_pgms/INFO
@@ -0,0 +1,13 @@
+c_pgms/locking ---> programs (both for file as well as directory) for doing open, lock (fcntl and flock), write, close on an fd multiple times to check for a leak in some memory type of the glusterfs process. (bug number 3025)
+
+===============================================
+c_pgms/threaded_io ---> program for opening a file from multiple threads and each thread doing some operation such as stat, write & truncate, read, chown etc on multiple fds (helped in reproducing bug 3011)
+
+===============================================
+c_pgms/create_bench(create.c) ---> benchmarking application for taking average time duration needed for the creation of different types of files such as regular file, directory, FIFO, character and block device special files
+
+===============================================
+c_pgms/inotify.c ---> program which monitors a directory and sends mail whenever some files are created under it. Used for sending nightly sanity results.
+
+===============================================
+c_pgms/trucate ---> programs which truncates a file based on both path as well as fd on a file. Can be enhanced in future to write some truncate based applications. Used to verify bug 3077.