Statetrace: Stub out the missing i386 version of sendState.
This commit is contained in:
parent
9d2650792f
commit
441ab29820
2 changed files with 7 additions and 0 deletions
|
@ -97,6 +97,12 @@ I686TraceChild::getOldRegVal(int num)
|
|||
return getRegs(oldregs, num);
|
||||
}
|
||||
|
||||
bool
|
||||
I686TraceChild::sendState(int socket)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
TraceChild *
|
||||
genTraceChild()
|
||||
{
|
||||
|
|
|
@ -73,6 +73,7 @@ class I686TraceChild : public TraceChild
|
|||
int64_t getOldRegVal(int num);
|
||||
uint64_t getPC() {return getRegVal(EIP);}
|
||||
uint64_t getSP() {return getRegVal(ESP);}
|
||||
bool sendState(int socket);
|
||||
std::ostream &
|
||||
outputStartState(std::ostream & output)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue