llvm-project/lldb/tools/lldb-mi/MIUtilSystemLinux.h
Deepak Panickal 6f9c468102 Initial commit of LLDB Machine Interface Frontend.
- Tested with Eclipse, likely to work with other GDB/MI compatible GUIs.
- Some but not all MI commands have been implemented. See MIReadme.txt for more info.
- Written from scratch, no GPL code, based on LLDB Public API.
- Built for Linux, Windows and OSX. Tested on Linux and Windows.
- GDB/MI Command Reference, https://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI.html

llvm-svn: 208972
2014-05-16 10:51:01 +00:00

61 lines
1.6 KiB
C++

//===-- CMIUtilSystemLinux.h ------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//++
// File: CMIUtilSystemLinux.h
//
// Overview: CMIUtilSystemLinux interface.
//
// Environment: Compilers: Visual C++ 12.
// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
// Libraries: See MIReadmetxt.
//
// Copyright: None.
//--
#pragma once
// Include compiler configuration
#include "MICmnConfig.h"
#if defined( __linux )
// In-house headers:
#include "MIUtilString.h"
//++ ============================================================================
// Details: MI common code utility class. Used to set or retrieve information
// about the current system or user.
// *** If you change, remove or add functionality it must be replicated
// *** for the all platforms supported; Windows, OSX, LINUX
// Gotchas: None.
// Authors: Illya Rudkin 29/01/2014.
// Changes: None.
//--
class CMIUtilSystemLinux
{
// Methods:
public:
/* ctor */ CMIUtilSystemLinux( void );
bool GetOSErrorMsg( const MIint vError, CMIUtilString & vrwErrorMsg ) const;
CMIUtilString GetOSLastError( void ) const;
bool GetExecutablesPath( CMIUtilString & vrwFileNamePath ) const;
bool GetLogFilesPath( CMIUtilString & vrwFileNamePath ) const;
// Overrideable:
public:
// From CMICmnBase
/* dtor */ virtual ~CMIUtilSystemLinux( void );
};
typedef CMIUtilSystemLinux CMIUtilSystem;
#endif // #if defined( __linux )