Files
rust/src/libstd/sys/unix/ext
Tobias Bucher b3f2644b66 Implement reading and writing atomically at certain offsets
These functions allow to read from and write to a file in one atomic
action from multiple threads, avoiding the race between the seek and the
read.

The functions are named `{read,write}_at` on non-Windows (which don't
change the file cursor), and `seek_{read,write}` on Windows (which
change the file cursor).
2016-10-09 10:48:07 +02:00
..
2016-08-24 22:12:48 +00:00
2015-12-30 19:31:28 +02:00
2016-06-23 14:08:11 -07:00