Compilation fixes.
--HG-- extra : convert_revision : 4932ab507580e0c9f7012398e71921ce58fc3c4e
This commit is contained in:
parent
729dbb60e9
commit
81996f855a
1 changed files with 3 additions and 3 deletions
|
@ -133,21 +133,21 @@ class SparcSystem : public System
|
|||
|
||||
/** Add a function-based event to reset binary. */
|
||||
template <class T>
|
||||
T *SparcSystem::addResetFuncEvent(const char *lbl)
|
||||
T *addResetFuncEvent(const char *lbl)
|
||||
{
|
||||
return addFuncEvent<T>(resetSymtab, lbl);
|
||||
}
|
||||
|
||||
/** Add a function-based event to the hypervisor. */
|
||||
template <class T>
|
||||
T *SparcSystem::addHypervisorFuncEvent(const char *lbl)
|
||||
T *addHypervisorFuncEvent(const char *lbl)
|
||||
{
|
||||
return addFuncEvent<T>(hypervisorSymtab, lbl);
|
||||
}
|
||||
|
||||
/** Add a function-based event to the openboot. */
|
||||
template <class T>
|
||||
T *SparcSystem::addOpenbootFuncEvent(const char *lbl)
|
||||
T *addOpenbootFuncEvent(const char *lbl)
|
||||
{
|
||||
return addFuncEvent<T>(openbootSymtab, lbl);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue