Deleted Added
full compact
SystemRuntime.cpp (258054) SystemRuntime.cpp (258884)
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) :
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)
36 m_process (process),
37 m_types ()
37{
38}
39
40//----------------------------------------------------------------------
41// Destructor
42//----------------------------------------------------------------------
43SystemRuntime::~SystemRuntime()
44{

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

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