diff options
author | Han Ming Ong <hanming@apple.com> | 2013-01-16 00:46:39 +0000 |
---|---|---|
committer | Han Ming Ong <hanming@apple.com> | 2013-01-16 00:46:39 +0000 |
commit | 2abd5ef841a458d1f55ccfe424b2570d8213ad9f (patch) | |
tree | 7504a373ef2df4d48a675c88fe46a5203296c3d3 /lldb/tools/debugserver/source/MacOSX/MachProcess.h | |
parent | b02cb40c1882f2b3c375add5aab4ef9b75816249 (diff) | |
download | bcm5719-llvm-2abd5ef841a458d1f55ccfe424b2570d8213ad9f.tar.gz bcm5719-llvm-2abd5ef841a458d1f55ccfe424b2570d8213ad9f.zip |
<rdar://problem/13019628>
Prevent profiling from working on older debugserver. Just a simple renaming since the caller is prepared to handle the ‘unimplemented’ answer.
llvm-svn: 172583
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachProcess.h')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachProcess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachProcess.h b/lldb/tools/debugserver/source/MacOSX/MachProcess.h index 478fc99f86f..6a34fa64410 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachProcess.h +++ b/lldb/tools/debugserver/source/MacOSX/MachProcess.h @@ -148,7 +148,7 @@ public: //---------------------------------------------------------------------- // Profile functions //---------------------------------------------------------------------- - void SetAsyncEnableProfiling (bool enable, uint64_t internal_usec); + void SetEnableAsyncProfiling (bool enable, uint64_t internal_usec); bool IsProfilingEnabled () { return m_profile_enabled; } uint64_t ProfileInterval () { return m_profile_interval_usec; } bool StartProfileThread (); |