]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
Upgrade Unbound to 1.7.3. More to follow.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Host / netbsd / HostInfoNetBSD.h
1 //===-- HostInfoNetBSD.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 lldb_Host_netbsd_HostInfoNetBSD_h_
11 #define lldb_Host_netbsd_HostInfoNetBSD_h_
12
13 #include "lldb/Host/posix/HostInfoPosix.h"
14 #include "lldb/Utility/FileSpec.h"
15
16 namespace lldb_private {
17
18 class HostInfoNetBSD : public HostInfoPosix {
19 public:
20   static bool GetOSVersion(uint32_t &major, uint32_t &minor, uint32_t &update);
21   static bool GetOSBuildString(std::string &s);
22   static bool GetOSKernelDescription(std::string &s);
23   static FileSpec GetProgramFileSpec();
24 };
25 }
26
27 #endif