Felix A. Croes
bfd8dca62d
Delay unmounting until all Slowio tasks are done.
...
Preventing a crash when unmounting a filesystem with pending Slowio.
2019-06-20 15:49:02 +02:00
Felix A. Croes
02fd6906c2
Revert making SeekableReadDirectory virtual.
...
This would be an API-breaking change that is actually pointless.
Override ReadDirectory instead, as intended.
2019-06-05 09:24:27 +02:00
Felix A. Croes
ce436fc29a
Attempt to add a slowio test for memfs-dotnet.
2019-06-04 17:10:33 +02:00
Felix A. Croes
879fa2464f
Add asynchronous I/O testing to memfs-dotnet.
...
Make SeekableReadDirectory virtual, so that it can be overridden.
2019-06-04 15:58:54 +02:00
Felix A. Croes
af7e5432a7
Let the Status argument be a signed integer.
...
The constants are defined as negative numbers, which would have required
a cast to unsigned for each call.
2019-05-15 14:09:08 +02:00
Felix A. Croes
1d619e0874
Use pointers instead of references.
...
To avoid copying structs needlessly.
2019-05-14 11:38:55 +02:00
Felix A. Croes
290896b010
Add asyncronous support for dotnet.
2019-05-13 09:47:59 +02:00
Felix A. Croes
4cdc8b4d9c
Update contributor's agreement.
2019-03-07 09:57:49 +01:00
Felix A. Croes
b350dffe6c
Fix 32 bit overflow issue in FspFsvolReadCached.
...
FspFsvolReadCached takes care not to read beyond the end of the file.
However, the offset check uses a 32 bit comparison, which fails for
files >= 4G. As a result, reads on a large file will skip blocks at
offset (filesize % 4G), and those blocks will zero-filled.
2019-03-07 09:45:42 +01:00