Changeset View
Changeset View
Standalone View
Standalone View
lldb/trunk/include/lldb/Target/Process.h
Show First 20 Lines • Show All 1,115 Lines • ▼ Show 20 Lines | #endif | ||||
// The default action is to return an empty data buffer. | // The default action is to return an empty data buffer. | ||||
// | // | ||||
// @return | // @return | ||||
// A data buffer containing the contents of the AUXV data. | // A data buffer containing the contents of the AUXV data. | ||||
//------------------------------------------------------------------ | //------------------------------------------------------------------ | ||||
virtual const lldb::DataBufferSP | virtual const lldb::DataBufferSP | ||||
GetAuxvData(); | GetAuxvData(); | ||||
//------------------------------------------------------------------ | |||||
/// Sometimes processes know how to retrieve and load shared libraries. | |||||
/// This is normally done by DynamicLoader plug-ins, but sometimes the | |||||
/// connection to the process allows retrieving this information. The | |||||
/// dynamic loader plug-ins can use this function if they can't | |||||
/// determine the current shared library load state. | |||||
/// | |||||
/// @return | |||||
/// The number of shared libraries that were loaded | |||||
//------------------------------------------------------------------ | |||||
virtual size_t | |||||
LoadModules () | |||||
{ | |||||
return 0; | |||||
} | |||||
protected: | protected: | ||||
virtual JITLoaderList & | virtual JITLoaderList & | ||||
GetJITLoaders (); | GetJITLoaders (); | ||||
public: | public: | ||||
//------------------------------------------------------------------ | //------------------------------------------------------------------ | ||||
/// Get the system runtime plug-in for this process. | /// Get the system runtime plug-in for this process. | ||||
/// | /// | ||||
▲ Show 20 Lines • Show All 2,165 Lines • Show Last 20 Lines |