Remove no longer needed member.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
|
* Copyright 2013, Rene Gollent, [email protected].
|
||||||
* Copyright 2009, Ingo Weinhold, [email protected].
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
@@ -17,7 +18,6 @@ Thread::Thread(Team* team, thread_id threadID)
|
|||||||
fTeam(team),
|
fTeam(team),
|
||||||
fID(threadID),
|
fID(threadID),
|
||||||
fState(THREAD_STATE_UNKNOWN),
|
fState(THREAD_STATE_UNKNOWN),
|
||||||
fExecutedSubroutine(false),
|
|
||||||
fReturnValueInfos(NULL),
|
fReturnValueInfos(NULL),
|
||||||
fStoppedReason(THREAD_STOPPED_UNKNOWN),
|
fStoppedReason(THREAD_STOPPED_UNKNOWN),
|
||||||
fCpuState(NULL),
|
fCpuState(NULL),
|
||||||
@@ -77,7 +77,6 @@ Thread::SetState(uint32 state, uint32 reason, const BString& info)
|
|||||||
if (fState != THREAD_STATE_STOPPED) {
|
if (fState != THREAD_STATE_STOPPED) {
|
||||||
SetCpuState(NULL);
|
SetCpuState(NULL);
|
||||||
SetStackTrace(NULL);
|
SetStackTrace(NULL);
|
||||||
fExecutedSubroutine = false;
|
|
||||||
ClearReturnValueInfos();
|
ClearReturnValueInfos();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -128,7 +127,6 @@ Thread::AddReturnValueInfo(ReturnValueInfo* info)
|
|||||||
return B_NO_MEMORY;
|
return B_NO_MEMORY;
|
||||||
|
|
||||||
info->AcquireReference();
|
info->AcquireReference();
|
||||||
fExecutedSubroutine = true;
|
|
||||||
return B_OK;
|
return B_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
|
* Copyright 2013, Rene Gollent, [email protected].
|
||||||
* Copyright 2009, Ingo Weinhold, [email protected].
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
@@ -81,7 +82,6 @@ private:
|
|||||||
thread_id fID;
|
thread_id fID;
|
||||||
BString fName;
|
BString fName;
|
||||||
uint32 fState;
|
uint32 fState;
|
||||||
bool fExecutedSubroutine;
|
|
||||||
ReturnValueInfoList*
|
ReturnValueInfoList*
|
||||||
fReturnValueInfos;
|
fReturnValueInfos;
|
||||||
uint32 fStoppedReason;
|
uint32 fStoppedReason;
|
||||||
|
|||||||
Reference in New Issue
Block a user