tracechild.cc (8117:2eec3c58e50e) tracechild.cc (8118:92229cb0cee9)
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
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
100TraceChild *
101genTraceChild()
102{
103 return new I686TraceChild;
104}
106TraceChild *
107genTraceChild()
108{
109 return new I686TraceChild;
110}