Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-11 11:54:13 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-11 11:54:13 +0300
commitf3d672309a23a989f0c60aeccf309a8db670e719 (patch)
tree97fe3f5a2a174e04932a7e33b23afbf83b28fa48 /programs
parent5021681a63ecb88f8fc583de0affd921b8677ecf (diff)
Finished renaming all AFIO => LLFIO, I think at least.
Diffstat (limited to 'programs')
-rw-r--r--programs/benchmark-iostreams/main.cpp2
-rw-r--r--programs/benchmark-locking/main.cpp2
-rw-r--r--programs/key-value-store/Readme.md6
-rw-r--r--programs/key-value-store/main.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/programs/benchmark-iostreams/main.cpp b/programs/benchmark-iostreams/main.cpp
index b6c5035a..2592c920 100644
--- a/programs/benchmark-iostreams/main.cpp
+++ b/programs/benchmark-iostreams/main.cpp
@@ -1,4 +1,4 @@
-/* Test the latency of iostreams vs AFIO
+/* Test the latency of iostreams vs LLFIO
(C) 2018 Niall Douglas <http://www.nedproductions.biz/> (6 commits)
File Created: Apr 2018
diff --git a/programs/benchmark-locking/main.cpp b/programs/benchmark-locking/main.cpp
index c1910b68..531ce780 100644
--- a/programs/benchmark-locking/main.cpp
+++ b/programs/benchmark-locking/main.cpp
@@ -22,7 +22,7 @@ Distributed under the Boost Software License, Version 1.0.
http://www.boost.org/LICENSE_1_0.txt)
*/
-//! On exit dumps a CSV file of the AFIO log, one per child worker
+//! On exit dumps a CSV file of the LLFIO log, one per child worker
#define DEBUG_CSV 1
//! Seconds to run the benchmark
diff --git a/programs/key-value-store/Readme.md b/programs/key-value-store/Readme.md
index 2299f7cb..2b3fd5a4 100644
--- a/programs/key-value-store/Readme.md
+++ b/programs/key-value-store/Readme.md
@@ -1,13 +1,13 @@
Herein lies an exploratory toy ACID key-value store written using
-AFIO which lets you look up any BLOB value from some 128-bit key, and to
+LLFIO which lets you look up any BLOB value from some 128-bit key, and to
update as an atomic transaction up to 65,535 key-values at once.
It is purely to test the feasibility of one approach to implementing such
-a store, and to test AFIO's design. Nobody should use this store for
+a store, and to test LLFIO's design. Nobody should use this store for
anything serious.
## Todo:
-- [x] Add sparse file creation on Windows to AFIO and see how the
+- [x] Add sparse file creation on Windows to LLFIO and see how the
benchmarks fare.
- [x] Add key-value deletion.
- [x] Atomic append should issue gather buffers of `IOV_MAX`
diff --git a/programs/key-value-store/main.cpp b/programs/key-value-store/main.cpp
index fd5a9632..894e9ccb 100644
--- a/programs/key-value-store/main.cpp
+++ b/programs/key-value-store/main.cpp
@@ -75,7 +75,7 @@ namespace stackoverflow
}
// Same as before, either throw any error or unpack the value returned
file_handle::buffers_type buffers_read(_buffers_read.value());
- // Note that buffers returned by AFIO read() may be completely different to buffers submitted
+ // Note that buffers returned by LLFIO read() may be completely different to buffers submitted
// This lets us skip unnecessary memory copying
// Make a string view of the first buffer returned