system.cc (2720:695250d6fa42) system.cc (2802:babfc298ac86)
1/*
2 * Copyright (c) 2003-2006 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;

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

238 vector<System *>::iterator i = systemList.begin();
239 vector<System *>::iterator end = systemList.end();
240 for (; i != end; ++i) {
241 System *sys = *i;
242 cerr << "System " << sys->name() << ": " << hex << sys << endl;
243 }
244}
245
1/*
2 * Copyright (c) 2003-2006 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;

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

238 vector<System *>::iterator i = systemList.begin();
239 vector<System *>::iterator end = systemList.end();
240 for (; i != end; ++i) {
241 System *sys = *i;
242 cerr << "System " << sys->name() << ": " << hex << sys << endl;
243 }
244}
245
246extern "C"
247void
248printSystems()
249{
250 System::printSystems();
251}
252
253#if FULL_SYSTEM
254

--- 30 unchanged lines hidden ---
246void
247printSystems()
248{
249 System::printSystems();
250}
251
252#if FULL_SYSTEM
253

--- 30 unchanged lines hidden ---