From f42b13afc158794bc7ddc3e0376c264dc15235a3 Mon Sep 17 00:00:00 2001 From: Lisa Hsu Date: Tue, 18 May 2004 13:53:11 -0400 Subject: lift FnEvents and and Binning stuff out of LinuxSystem into commonn places with Tru64. kern/linux/linux_system.cc: add binned_fns parameter to System, remove nonLinux events from LinuxSystem, fix ~LinuxSystem() by adding delete of some things that need to be deleted. kern/linux/linux_system.hh: fix header file to go with linux_system.cc, removing nonLinux events and adding binned_fns param. kern/tru64/tru64_system.cc: add somme consistency by having having binned_fns be _binned_fns in the Tru64System arg list. --HG-- extra : convert_revision : b2ec0c1614e185aafa177c220b91d1f6a4fe6876 --- kern/tru64/tru64_system.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kern/tru64') diff --git a/kern/tru64/tru64_system.cc b/kern/tru64/tru64_system.cc index ebd78c58b..31f9c9878 100644 --- a/kern/tru64/tru64_system.cc +++ b/kern/tru64/tru64_system.cc @@ -48,9 +48,9 @@ Tru64System::Tru64System(const string _name, const uint64_t _init_param, MemoryController *_memCtrl, PhysicalMemory *_physmem, const string &kernel_path, const string &console_path, const string &palcode, const string &boot_osflags, - const bool _bin, const vector &binned_fns) - : System(_name, _init_param, _memCtrl, _physmem, _bin, binned_fns), - bin(_bin), binned_fns(binned_fns) + const bool _bin, const vector &_binned_fns) + : System(_name, _init_param, _memCtrl, _physmem, _bin,_binned_fns), + bin(_bin), binned_fns(_binned_fns) { kernelSymtab = new SymbolTable; consoleSymtab = new SymbolTable; -- cgit v1.2.3