system.hh (5334:5136aad50b97) system.hh (5615:1c4b9b1aa500)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

91 void unserialize(Checkpoint *cp, const std::string &section);
92
93 void startup();
94
95 protected:
96
97 X86ISA::SMBios::SMBiosTable * smbiosTable;
98
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

91 void unserialize(Checkpoint *cp, const std::string &section);
92
93 void startup();
94
95 protected:
96
97 X86ISA::SMBios::SMBiosTable * smbiosTable;
98
99 void writeOutSMBiosTable(Addr header, Addr table = 0);
99 void writeOutSMBiosTable(Addr header,
100 Addr &headerSize, Addr &tableSize, Addr table = 0);
100
101 const Params *params() const { return (const Params *)_params; }
102
103 virtual Addr fixFuncEventAddr(Addr addr)
104 {
105 //XXX This may eventually have to do something useful.
106 return addr;
107 }
108};
109
110#endif
111
101
102 const Params *params() const { return (const Params *)_params; }
103
104 virtual Addr fixFuncEventAddr(Addr addr)
105 {
106 //XXX This may eventually have to do something useful.
107 return addr;
108 }
109};
110
111#endif
112