Statetrace: Stub out the missing i386 version of sendState.

This commit is contained in:
Gabe Black 2011-03-02 22:53:11 -08:00
parent 9d2650792f
commit 441ab29820
2 changed files with 7 additions and 0 deletions

View file

@ -97,6 +97,12 @@ I686TraceChild::getOldRegVal(int num)
return getRegs(oldregs, num); return getRegs(oldregs, num);
} }
bool
I686TraceChild::sendState(int socket)
{
return false;
}
TraceChild * TraceChild *
genTraceChild() genTraceChild()
{ {

View file

@ -73,6 +73,7 @@ class I686TraceChild : public TraceChild
int64_t getOldRegVal(int num); int64_t getOldRegVal(int num);
uint64_t getPC() {return getRegVal(EIP);} uint64_t getPC() {return getRegVal(EIP);}
uint64_t getSP() {return getRegVal(ESP);} uint64_t getSP() {return getRegVal(ESP);}
bool sendState(int socket);
std::ostream & std::ostream &
outputStartState(std::ostream & output) outputStartState(std::ostream & output)
{ {