remote_gdb.hh (3550:515e876568b4) remote_gdb.hh (3579:e9976b62c259)
1/*
2 * Copyright (c) 2002-2005 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;

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

140 {}
141 ~GdbRegCache()
142 {
143 delete [] regs;
144 }
145
146 uint64_t * regs;
147 size_t size;
1/*
2 * Copyright (c) 2002-2005 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;

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

140 {}
141 ~GdbRegCache()
142 {
143 delete [] regs;
144 }
145
146 uint64_t * regs;
147 size_t size;
148 size_t bytes() { return size * sizeof(uint64_t); }
148 };
149
150 GdbRegCache gdbregs;
151
152 protected:
153 uint8_t getbyte();
154 void putbyte(uint8_t b);
155

--- 112 unchanged lines hidden ---
149 };
150
151 GdbRegCache gdbregs;
152
153 protected:
154 uint8_t getbyte();
155 void putbyte(uint8_t b);
156

--- 112 unchanged lines hidden ---