1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 83 unchanged lines hidden (view full) ---

92}
93
94int64_t
95I686TraceChild::getOldRegVal(int num)
96{
97 return getRegs(oldregs, num);
98}
99
100bool
101I686TraceChild::sendState(int socket)
102{
103 return false;
104}
105
106TraceChild *
107genTraceChild()
108{
109 return new I686TraceChild;
110}