HostNativeThread.h 690 B

12345678910111213141516171819202122
  1. //===-- HostNativeThread.h --------------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef LLDB_HOST_HOSTNATIVETHREAD_H
  9. #define LLDB_HOST_HOSTNATIVETHREAD_H
  10. #include "HostNativeThreadForward.h"
  11. #if defined(_WIN32)
  12. #include "lldb/Host/windows/HostThreadWindows.h"
  13. #elif defined(__APPLE__)
  14. #include "lldb/Host/macosx/HostThreadMacOSX.h"
  15. #else
  16. #include "lldb/Host/posix/HostThreadPosix.h"
  17. #endif
  18. #endif