remote_gdb.cc (8541:27aaee8ec7cc) remote_gdb.cc (8700:5637ed211912)
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;

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

309 alpha_pal_imb();
310#endif
311 return true;
312 } else {
313 return false;
314 }
315}
316
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;

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

309 alpha_pal_imb();
310#endif
311 return true;
312 } else {
313 return false;
314 }
315}
316
317
318bool
319RemoteGDB::insertHardBreak(Addr addr, size_t len)
320{
321 warn_once("Breakpoints do not work in Alpha PAL mode.\n"
322 " See PCEventQueue::doService() in cpu/pc_event.cc.\n");
323 return BaseRemoteGDB::insertHardBreak(addr, len);
324}