Deleted Added
sdiff udiff text old ( 258054 ) new ( 258884 )
full compact
1//===-- SystemRuntime.cpp ---------------------------------------*- 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//===----------------------------------------------------------------------===//

--- 19 unchanged lines hidden (view full) ---

28 return NULL;
29}
30
31
32//----------------------------------------------------------------------
33// SystemRuntime constructor
34//----------------------------------------------------------------------
35SystemRuntime::SystemRuntime(Process *process) :
36 m_process (process),
37 m_types ()
38{
39}
40
41//----------------------------------------------------------------------
42// Destructor
43//----------------------------------------------------------------------
44SystemRuntime::~SystemRuntime()
45{

--- 9 unchanged lines hidden (view full) ---

55{
56}
57
58void
59SystemRuntime::ModulesDidLoad (ModuleList &module_list)
60{
61}
62
63const std::vector<ConstString> &
64SystemRuntime::GetExtendedBacktraceTypes ()
65{
66 return m_types;
67}
68
69ThreadSP
70SystemRuntime::GetExtendedBacktraceThread (ThreadSP thread, ConstString type)
71{
72 return ThreadSP();
73}