From 0fdb3361e7525f4f49556d1233d9b84c566ec6fb Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Thu, 23 Oct 2003 06:22:17 +0000 Subject: - Renamed ObjectBase to GCShared. - Fixed the problem of the gc test sometimes running for over three minutes. - Fixed race condition in printGCStats if a signal caused communicator shutdown. --- cpp/src/slice2cpp/Gen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/slice2cpp/Gen.cpp') diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 876500ab25f..697e9846794 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -2606,9 +2606,9 @@ Slice::Gen::ObjectVisitor::emitGCFunctions(const ClassDefPtr& p) ClassList bases = p->bases(); DataMemberList dataMembers = p->dataMembers(); - H << nl << "virtual void __gcReachable(::IceUtil::ObjectMultiSet&) const;"; + H << nl << "virtual void __gcReachable(::IceUtil::GCObjectMultiSet&) const;"; - C << sp << nl << "void" << nl << scoped.substr(2) << "::__gcReachable(::IceUtil::ObjectMultiSet& _c) const"; + C << sp << nl << "void" << nl << scoped.substr(2) << "::__gcReachable(::IceUtil::GCObjectMultiSet& _c) const"; C << sb; if(bases.empty() || bases.front()->isInterface()) { -- cgit v1.2.3