5 // Created by James McIlree on 4/19/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
9 #ifndef __CPPUtil__UtilMappedFile__
10 #define __CPPUtil__UtilMappedFile__
14 unsigned char* _address;
18 MappedFile(const char* path);
21 uint8_t* address() { return _address; }
22 size_t size() { return _size; }
24 bool mmap_failed() const { return _size > 0 && _address == nullptr; }
27 #endif /* defined(__CPPUtil__UtilMappedFile__) */