> Where do we have circular references? You can't construct objects with > circular references in C++, so why do we need it in Python?
Actually, you can construct C++ objects with circular references, but the pointers are not valid in the constructor. The pointers aren't valid until init() or later. I'm not sure if this was used in practice. I could look into changing it. This is not something that is going to get solved super quickly though. Nate _______________________________________________ m5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/m5-dev
