]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
file: update to 5.34
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Host / LockFile.h
1 //===-- LockFile.h ----------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_Host_LockFile_h_
11 #define liblldb_Host_LockFile_h_
12
13 #if defined(_WIN32)
14 #include "lldb/Host/windows/LockFileWindows.h"
15 namespace lldb_private {
16 typedef LockFileWindows LockFile;
17 }
18 #else
19 #include "lldb/Host/posix/LockFilePosix.h"
20 namespace lldb_private {
21 typedef LockFilePosix LockFile;
22 }
23 #endif
24
25 #endif // liblldb_Host_LockFile_h_