Changeset ae21cbd


Ignore:
Timestamp:
Dec 4, 2010, 11:47:35 PM (14 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
d5240d
Parents:
41449c
git-author:
Frederik Heber <heber@…> (11/10/10 14:21:55)
git-committer:
Frederik Heber <heber@…> (12/04/10 23:47:35)
Message:

MEMFIX: new function AddStaticEntitiestoIgnoreList() for putting static variables on ignore list.

  • static classes still may have dynamically allocated contents in their constructors. Hence, we have to put their contents - which will get deleted - into the Memory::ignore map to avoid their admonishing.
Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/LinearAlgebra/Vector.cpp

    r41449c rae21cbd  
    336336}
    337337
    338 VectorContent* Vector::get(){
     338VectorContent* Vector::get() const
     339{
    339340  return content;
    340341}
  • src/LinearAlgebra/Vector.hpp

    r41449c rae21cbd  
    7777
    7878  // Access to internal structure
    79   VectorContent* get();
     79  VectorContent* get() const;
    8080
    8181  // Methods that are derived directly from other methods
  • src/Patterns/Registry_impl.hpp

    r41449c rae21cbd  
    7575  typename std::map<const std::string,T*>::iterator iter;
    7676  for(iter=InstanceMap.begin();iter!=InstanceMap.end();++iter) {
     77    //std::cerr << "Removing instance "+iter->first+" from registry" << std::endl;
    7778    delete iter->second;
    7879  }
  • src/builder.cpp

    r41449c rae21cbd  
    111111/********************************************** Main routine **************************************/
    112112
     113/** In this function all dynamicly allocated member variables to static/global
     114 * variables are added to the ignore list of Memory/MemDebug.
     115 *
     116 * Use this to prevent their listing in the Memory::getState() at the end of the
     117 * program. Check with valgrind that truely no memory leak occurs!
     118 */
     119void AddStaticEntitiestoIgnoreList()
     120{
     121  // zeroVec and unitVec are global variables (on the stack) but vectorContent
     122  // within is situated on the heap and has to be ignored
     123  Memory::ignore(zeroVec.get());
     124  Memory::ignore(unitVec[0].get());
     125  Memory::ignore(unitVec[1].get());
     126  Memory::ignore(unitVec[2].get());
     127}
     128
     129/** Cleans all singleton instances in an orderly fashion.
     130 * C++ does not guarantee any specific sequence of removal of single instances
     131 * which have static/global variables. Some singletons depend on others hence we
     132 * acertain a specific ordering here, which is is used via the atexit() hook.
     133 */
    113134void cleanUp(){
    114135  FormatParserStorage::purgeInstance();
     
    123144  // we have to remove these two static as otherwise their boost::shared_ptrs are still present
    124145  Action::removeStaticStateEntities();
     146  // put some static variables' dynamic contents on the Memory::ignore map to avoid their
     147  // admonishing lateron
     148  AddStaticEntitiestoIgnoreList();
    125149  logger::purgeInstance();
    126150  errorLogger::purgeInstance();
Note: See TracChangeset for help on using the changeset viewer.