system.cc (8958:af0f1c66ff53) system.cc (9292:e57c7d9736a5)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

383}
384
385
386X86System::~X86System()
387{
388 delete smbiosTable;
389}
390
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

383}
384
385
386X86System::~X86System()
387{
388 delete smbiosTable;
389}
390
391void
392X86System::serialize(std::ostream &os)
393{
394 System::serialize(os);
395}
396
397
398void
399X86System::unserialize(Checkpoint *cp, const std::string &section)
400{
401 System::unserialize(cp,section);
402}
403
404X86System *
405X86SystemParams::create()
406{
407 return new X86System(this);
408}
391X86System *
392X86SystemParams::create()
393{
394 return new X86System(this);
395}