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>2016-05-13 11:16:31 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-05-13 11:16:31 +0300
commit3e9ff63c0291b9b91629f9be18e011cd55ff1e0b (patch)
tree9eb52581b33e2b6cfceb5b854e9a2e98362145bd /Readme.md
parent8b0de676a6dd5125299c82390847d82fc326aaac (diff)
Add -Wdocumentation to clang build options and fixed all documentation warnings.
handle::flags::delete_on_close has been split into win_delete_on_last_close and posix_unlink_on_first_close
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index 3bfe09dd..15fa0a36 100644
--- a/Readme.md
+++ b/Readme.md
@@ -22,7 +22,6 @@ in a call sequence be overridden with some errored return.
Todo:
-- [ ] Add -Wdocumentation to clang builds and fix broken docs :)
- [ ] algorithm::atomic_append needs improvements:
- Trap if append exceeds 2^63 and do something useful with that
- Fix the known inefficiencies in the implementation:
@@ -36,9 +35,6 @@ Todo:
people to use pointers returned!
- [ ] Port AFIO v2 back to POSIX
- - [ ] flag::delete_on_close should become flag::win_delete_on_last_close which only
-works on Windows
- - [ ] Add flag::posix_unlink_on_first_close which only works on POSIX
- [ ] delete on close on Linux could be implemented using a clone() and monitoring
parent process for exit, then trying to take a write oplock and if success
unlinking the file.