Centralize the register reporting (might want to move this function to Thread).

llvm-svn: 124016
This commit is contained in:
Jim Ingham 2011-01-22 01:28:29 +00:00
parent 9da3683c43
commit e54defe4a3
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,7 @@ public:
WillPop ();
protected:
void ReportRegisterState (const char *message);
private:
void
DoTakedown ();
@ -104,6 +105,7 @@ private:
LanguageRuntime *m_cxx_language_runtime;
LanguageRuntime *m_objc_language_runtime;
Thread::ThreadStateCheckpoint m_stored_thread_state;
bool m_takedown_done; // We want to ensure we only do the takedown once. This ensures that.
DISALLOW_COPY_AND_ASSIGN (ThreadPlanCallFunction);
};