Deleted Added
sdiff udiff text old ( 8741:491297d019f3 ) new ( 10905:a6ca6831e775 )
full compact
1/*
2 * Copyright (c) 2004-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;

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

86
87Addr
88Malta::pciToDma(Addr pciAddr) const
89{
90 panic("Malta::pciToDma() has not been implemented.");
91}
92
93void
94Malta::serialize(CheckpointOut &cp) const
95{
96 SERIALIZE_ARRAY(intr_sum_type, Malta::Max_CPUs);
97}
98
99void
100Malta::unserialize(CheckpointIn &cp)
101{
102 UNSERIALIZE_ARRAY(intr_sum_type, Malta::Max_CPUs);
103}
104
105Malta *
106MaltaParams::create()
107{
108 return new Malta(this);
109}