diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:53:01 +0000 |
commit | ead246455adf1a215ec2715dad6533073a6beb4e (patch) | |
tree | f3f97a47d77053bf96fe74cdbd6fae74380e8a92 /include/lldb/Host/FileCache.h | |
parent | fdb00c4408990a0a63ef7f496d809ce59f263bc5 (diff) |
Notes
Diffstat (limited to 'include/lldb/Host/FileCache.h')
-rw-r--r-- | include/lldb/Host/FileCache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/lldb/Host/FileCache.h b/include/lldb/Host/FileCache.h index 0c1ef1961645..c76916701ebb 100644 --- a/include/lldb/Host/FileCache.h +++ b/include/lldb/Host/FileCache.h @@ -14,6 +14,7 @@ #include "lldb/lldb-forward.h" #include "lldb/lldb-types.h" +#include "lldb/Host/File.h" #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/Status.h" @@ -22,12 +23,12 @@ class FileCache { private: FileCache() {} - typedef std::map<lldb::user_id_t, lldb::FileSP> FDToFileMap; + typedef std::map<lldb::user_id_t, lldb::FileUP> FDToFileMap; public: static FileCache &GetInstance(); - lldb::user_id_t OpenFile(const FileSpec &file_spec, uint32_t flags, + lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags, uint32_t mode, Status &error); bool CloseFile(lldb::user_id_t fd, Status &error); |