Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r54319 - in sandbox/monotonic: boost/monotonic libs/monotonic/test
From: christian.schladetsch_at_[hidden]
Date: 2009-06-24 18:06:24


Author: cschladetsch
Date: 2009-06-24 18:06:23 EDT (Wed, 24 Jun 2009)
New Revision: 54319
URL: http://svn.boost.org/trac/boost/changeset/54319

Log:
added prefix.hpp, postfix.hpp

Added:
   sandbox/monotonic/boost/monotonic/config.hpp (contents, props changed)
Text files modified:
   sandbox/monotonic/libs/monotonic/test/monotonic.vcproj | 4 ++++
   1 files changed, 4 insertions(+), 0 deletions(-)

Added: sandbox/monotonic/boost/monotonic/config.hpp
==============================================================================
--- (empty file)
+++ sandbox/monotonic/boost/monotonic/config.hpp 2009-06-24 18:06:23 EDT (Wed, 24 Jun 2009)
@@ -0,0 +1,38 @@
+// Copyright (C) 2009 Christian Schladetsch
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+
+#ifndef BOOST_MONOTONIC_CONFIG_HPP
+# define BOOST_MONOTONIC_CONFIG_HPP
+
+# include <boost/config.hpp>
+# include <memory>
+
+namespace boost
+{
+ namespace monotonic
+ {
+ typedef std::allocator<char> default_allocator;
+
+ struct DefaultSizes
+ {
+ enum
+ {
+ InlineSize = 32*1024, ///< buffer that is inline with the storage
+ MinHeapIncrement = 32*1024*1024, ///< the smallest new chunk-size for heap storage
+ //StaticInlineSize = 1*1024*1024, ///< inline size for a global store. this goes into your BSS
+ //StaticMinHeapIncrement = 32*1024*1024,
+ MinPoolSize = 8,
+
+ RegionInlineSize = 8*1024,
+ };
+ };
+
+ } // namespace monotonic
+
+} // namespace boost
+
+#endif // BOOST_MONOTONIC_CONFIG_HPP
+
+//EOF

Modified: sandbox/monotonic/libs/monotonic/test/monotonic.vcproj
==============================================================================
--- sandbox/monotonic/libs/monotonic/test/monotonic.vcproj (original)
+++ sandbox/monotonic/libs/monotonic/test/monotonic.vcproj 2009-06-24 18:06:23 EDT (Wed, 24 Jun 2009)
@@ -263,6 +263,10 @@
>
                                 </File>
                                 <File
+ RelativePath="..\..\..\boost\monotonic\config.hpp"
+ >
+ </File>
+ <File
                                         RelativePath="..\..\..\boost\monotonic\container.hpp"
>
                                 </File>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk