diff options
Diffstat (limited to 'tools/lldb-mi/MIUtilSystemOsx.cpp')
-rw-r--r-- | tools/lldb-mi/MIUtilSystemOsx.cpp | 144 |
1 files changed, 71 insertions, 73 deletions
diff --git a/tools/lldb-mi/MIUtilSystemOsx.cpp b/tools/lldb-mi/MIUtilSystemOsx.cpp index e291304789d52..f095c6212eb40 100644 --- a/tools/lldb-mi/MIUtilSystemOsx.cpp +++ b/tools/lldb-mi/MIUtilSystemOsx.cpp @@ -8,118 +8,116 @@ //===----------------------------------------------------------------------===// //++ -// File: MIUtilSystemOsx.cpp +// File: MIUtilSystemOsx.cpp // -// Overview: CMIUtilSystemOsx implementation. +// Overview: CMIUtilSystemOsx implementation. // -// Environment: Compilers: Visual C++ 12. -// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1 -// Libraries: See MIReadmetxt. +// Environment: Compilers: Visual C++ 12. +// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1 +// Libraries: See MIReadmetxt. // -// Copyright: None. +// Copyright: None. //-- -#if defined( __APPLE__ ) +#if defined(__APPLE__) // In-house headers: #include "MIUtilSystemOsx.h" #include "MICmnResources.h" //++ ------------------------------------------------------------------------------------ -// Details: CMIUtilSystemOsx constructor. -// Type: Method. -// Args: None. -// Return: None. -// Throws: None. +// Details: CMIUtilSystemOsx constructor. +// Type: Method. +// Args: None. +// Return: None. +// Throws: None. //-- -CMIUtilSystemOsx::CMIUtilSystemOsx( void ) +CMIUtilSystemOsx::CMIUtilSystemOsx(void) { } //++ ------------------------------------------------------------------------------------ -// Details: CMIUtilSystemOsx destructor. -// Type: Method. -// Args: None. -// Return: None. -// Throws: None. +// Details: CMIUtilSystemOsx destructor. +// Type: Method. +// Args: None. +// Return: None. +// Throws: None. //-- -CMIUtilSystemOsx::~CMIUtilSystemOsx( void ) +CMIUtilSystemOsx::~CMIUtilSystemOsx(void) { } //++ ------------------------------------------------------------------------------------ -// Details: Retrieve the OS system error message for the given system error code. -// Type: Method. -// Args: vError - (R) OS error code value. -// vrwErrorMsg - (W) The error message. -// Return: MIstatus::success - Functional succeeded. -// MIstatus::failure - Functional failed. -// Throws: None. +// Details: Retrieve the OS system error message for the given system error code. +// Type: Method. +// Args: vError - (R) OS error code value. +// vrwErrorMsg - (W) The error message. +// Return: MIstatus::success - Functional succeeded. +// MIstatus::failure - Functional failed. +// Throws: None. //-- -bool CMIUtilSystemOsx::GetOSErrorMsg( const MIint vError, CMIUtilString & vrwErrorMsg ) const +bool +CMIUtilSystemOsx::GetOSErrorMsg(const MIint vError, CMIUtilString &vrwErrorMsg) const { - // Reset - vrwErrorMsg.clear(); + // Reset + vrwErrorMsg.clear(); - bool bOk = MIstatus::failure; - - // ToDo: Implement LINUX version - - return bOk; + bool bOk = MIstatus::failure; + + // ToDo: Implement LINUX version + + return bOk; } //++ ------------------------------------------------------------------------------------ -// Details: Retrieve if possible the OS last error description. -// Type: Method. -// Args: None. -// Return: CMIUtilString - Error description. -// Throws: None. +// Details: Retrieve if possible the OS last error description. +// Type: Method. +// Args: None. +// Return: CMIUtilString - Error description. +// Throws: None. //-- -CMIUtilString CMIUtilSystemOsx::GetOSLastError( void ) const +CMIUtilString +CMIUtilSystemOsx::GetOSLastError(void) const { - CMIUtilString errorMsg( "Error fn not implemented" ); - - // ToDo: Implement LINUX version - - return errorMsg; + CMIUtilString errorMsg("Error fn not implemented"); + + // ToDo: Implement LINUX version + + return errorMsg; } //++ ------------------------------------------------------------------------------------ -// Details: Retrieves the fully qualified path for the this application. If the function -// fails the string is filled with the error message. -// Type: Method. -// Args: vrwFileNamePath - (W) The excutable's name and path or last error description. -// Return: MIstatus::success - Functional succeeded. -// MIstatus::failure - Functional failed. -// Throws: None. +// Details: Retrieves the fully qualified path for the this application. If the function +// fails the string is filled with the error message. +// Type: Method. +// Args: vrwFileNamePath - (W) The excutable's name and path or last error description. +// Return: MIstatus::success - Functional succeeded. +// MIstatus::failure - Functional failed. +// Throws: None. //-- -bool CMIUtilSystemOsx::GetExecutablesPath( CMIUtilString & vrwFileNamePath ) const +bool +CMIUtilSystemOsx::GetExecutablesPath(CMIUtilString &vrwFileNamePath) const { - bool bOk = MIstatus::failure; - - // ToDo: Implement OSX version - - return bOk; + vrwFileNamePath = CMIUtilString("."); + return MIstatus::success; } //++ ------------------------------------------------------------------------------------ -// Details: Retrieves the fully qualified path for the Log file for this application. -// If the function fails the string is filled with the error message. -// Append a dummy file name on the end of the path. This will be stripped off -// later and the real log file name replaces it. -// Type: Method. -// Args: vrwFileNamePath - (W) The Log file's name and path or last error description. -// Return: MIstatus::success - Functional succeeded. -// MIstatus::failure - Functional failed. -// Throws: None. +// Details: Retrieves the fully qualified path for the Log file for this application. +// If the function fails the string is filled with the error message. +// Append a dummy file name on the end of the path. This will be stripped off +// later and the real log file name replaces it. +// Type: Method. +// Args: vrwFileNamePath - (W) The Log file's name and path or last error description. +// Return: MIstatus::success - Functional succeeded. +// MIstatus::failure - Functional failed. +// Throws: None. //-- -bool CMIUtilSystemOsx::GetLogFilesPath( CMIUtilString & vrwFileNamePath ) const +bool +CMIUtilSystemOsx::GetLogFilesPath(CMIUtilString &vrwFileNamePath) const { - bool bOk = MIstatus::failure; - - // ToDo: Implement OSX version - - return bOk; + vrwFileNamePath = CMIUtilString("."); + return MIstatus::success; } #endif // #if defined( __APPLE__ ) |