main.cc (2839:d5dd8a3cdea0) main.cc (2868:6a7e69fa92d3)
1/*
2 * Copyright (c) 2000-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;

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

537 fatal("Called cleanupCountedDrain() on an event that was not "
538 "a CountedDrainEvent.");
539 }
540 assert(event->getCount() == 0);
541 delete event;
542}
543
544void
1/*
2 * Copyright (c) 2000-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;

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

537 fatal("Called cleanupCountedDrain() on an event that was not "
538 "a CountedDrainEvent.");
539 }
540 assert(event->getCount() == 0);
541 delete event;
542}
543
544void
545serializeAll()
545serializeAll(const std::string &cpt_dir)
546{
546{
547 Serializable::serializeAll();
547 Serializable::serializeAll(cpt_dir);
548}
549
550void
548}
549
550void
551unserializeAll()
551unserializeAll(const std::string &cpt_dir)
552{
552{
553 Serializable::unserializeAll();
553 Serializable::unserializeAll(cpt_dir);
554}
555
556/**
557 * Queue of C++ callbacks to invoke on simulator exit.
558 */
559CallbackQueue exitCallbacks;
560
561/**

--- 35 unchanged lines hidden ---
554}
555
556/**
557 * Queue of C++ callbacks to invoke on simulator exit.
558 */
559CallbackQueue exitCallbacks;
560
561/**

--- 35 unchanged lines hidden ---