Deleted Added
sdiff udiff text old ( 7460:41550bb10e08 ) new ( 7492:acc1fbbef239 )
full compact
1/*
2 * Copyright (c) 2001-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;

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

68 state = Running;
69}
70
71void
72SimObject::init()
73{
74}
75
76//
77// no default statistics, so nothing to do in base implementation
78//
79void
80SimObject::regStats()
81{
82}
83

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

190 if(cp->sectionExists(obj->name()))
191 obj->unserialize(cp, obj->name());
192 else
193 warn("Not unserializing '%s': no section found in checkpoint.\n",
194 obj->name());
195 }
196}
197
198#ifdef DEBUG
199//
200// static function: flag which objects should have the debugger break
201//
202void
203SimObject::debugObjectBreak(const string &objs)
204{
205 SimObjectList::const_iterator i = simObjectList.begin();

--- 62 unchanged lines hidden ---