This project is mirrored from https://github.com/Crowndev/crown-core.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
  1. 16 Dec, 2014 1 commit
  2. 19 Sep, 2014 1 commit
  3. 06 Sep, 2014 1 commit
  4. 20 Oct, 2013 1 commit
    • Chuck's avatar
      Changing LockedPageManager to use a managed instance · 0b8f47dc
      Chuck authored
      This ensures the allocator is ready no matter when it's needed (as
      some STL implementations allocate in constructors -- i.e., MSVC's STL
      in debug builds).
      
      Using boost::call_once to guarantee thread-safe static initialization.
      
      Adding some comments describing why the change was made.
      
      Addressing deinitialization of the LockedPageManager object
      by initializing it in a local static initializer and adding
      an assert in the base's destructor.
      0b8f47dc
  5. 09 Oct, 2013 1 commit
    • Gavin Andresen's avatar
      Remove include of windows.h from allocators.h · d8315d16
      Gavin Andresen authored
      Create an allocators.cpp, and move all of the #ifdef WIN32
      code and the #include of windows.h into it.
      
      Two motives for this cleanup:
      1. I'm getting a weird error in windows.h in my smartfee branch.
      2. allocators.h is included (indirectly) just about everywhere, so
      this should speed up Windows compiles quite a lot.
      d8315d16