summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/macosx/Host.mm
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Host/macosx/Host.mm')
-rw-r--r--lldb/source/Host/macosx/Host.mm7
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm
index 47a9b0aac6b..2a1891bf3fe 100644
--- a/lldb/source/Host/macosx/Host.mm
+++ b/lldb/source/Host/macosx/Host.mm
@@ -1984,3 +1984,10 @@ Host::GetAuxvData(lldb_private::Process *process)
{
return lldb::DataBufferSP();
}
+
+uint32_t
+Host::MakeDirectory (const char* path, mode_t mode)
+{
+ return ::mkdir(path,mode);
+}
+
OpenPOWER on IntegriCloud