implement Sync for DynamicIndexReader and FixedIndexReader

hyper's wrap_stream now needs this

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2019-08-28 10:33:41 +02:00
parent 236761a3e6
commit 5c1130df9f
3 changed files with 5 additions and 3 deletions

View File

@ -45,6 +45,7 @@ pub struct FixedIndexReader {
// `index` is mmap()ed which cannot be thread-local so should be sendable
unsafe impl Send for FixedIndexReader {}
unsafe impl Sync for FixedIndexReader {}
impl Drop for FixedIndexReader {