Increasing NEKTAR_MAX_MEMORY_MANAGER_CONSTRUCTOR_ARGS to 11
Revision 1.19 2008/06/10 06:00:37 bnelson
Updated documentation.
Revision 1.18 2008/05/16 05:43:19 bnelson
Updated the memory manager so it is faster choosing the allocator to use, doesn't use the pools for anything larger than 1024 bytes, and doesn't issue a warning for large allocations.
Revision 1.17 2008/04/06 22:29:13 bnelson
Reimplmented shared arrays for speed improvements.
Revision 1.16 2008/01/02 18:17:22 bnelson
Removed commented code.
Revision 1.15 2007/08/25 04:21:49 bnelson
*** empty log message ***
Revision 1.14 2007/07/27 00:22:37 bnelson
Memory manager now accepts non-const parameters to the allocate methods.
Revision 1.13 2007/07/22 23:03:28 bnelson
Backed out Nektar::ptr.
Revision 1.12 2007/07/20 00:19:42 bnelson
Replaced boost::shared_ptr with Nektar::ptr
Revision 1.11 2007/05/14 23:50:16 bnelson
Updated MemoryManager to implement the allocator interface.
Revision 1.10 2007/04/29 00:30:05 jfrazier
Converted tmp space methods to return 1D multi_arrays.
Revision 1.9 2007/04/06 04:36:21 bnelson
Updated for const-correctness.
Revision 1.8 2007/03/29 18:42:58 bnelson
Replaced boost::shared_array with Nektar::SharedArray and fixed several problems where the compile time array size was being used instead of the run time array size.
Revision 1.7 2007/03/21 16:13:19 sherwin
Fixed double to NekDouble casting in Array<OneD, NekDouble>
Revision 1.6 2007/03/20 16:58:41 sherwin
Update to use Array<OneD, NekDouble> storage and NekDouble usage, compiling and executing up to Demos/StdRegions/Project1D
Revision 1.5 2007/01/29 01:27:49 bnelson
Added additional Allocate methods which take more parameters for the constructor.
Removed the requirement for the user to specify, for each class, whether it can use the memory manager or not. The memory manager is now a cmake level variable.
Revision 1.4 2006/10/30 05:09:36 bnelson
Fixed an error deleting object in an array that were not being constructed.
Revision 1.3 2006/08/25 01:30:36 bnelson
Added allocation of raw arrays.
Revision 1.2 2006/06/01 13:44:29 kirby
*** empty log message ***
Revision 1.1 2006/06/01 09:17:24 kirby
*** empty log message ***
Revision 1.6 2006/05/30 14:00:03 sherwin
Updates to make MultiRegions and its Demos work
Revision 1.5 2006/05/18 04:23:57 bnelson
Added allocation functions that pass arguments to the constructors of the objects being created.
Revision 1.4 2006/05/15 04:13:36 bnelson
no message
Revision 1.3 2006/05/14 21:31:49 bnelson
Modified the upper bound on static shared array allocation.
Revision 1.2 2006/05/06 20:36:16 sherwin
Modifications to get LocalRegions/Project1D working
Revision 1.1 2006/05/04 18:57:43 kirby
*** empty log message ***
Revision 1.5 2006/04/25 20:17:39 jfrazier
Fixed a .Net issue with the deallocator function passed to shared_array.
Included <cstring> in order to compile for GCC 4.3.1.
Revision 1.7 2008/06/10 06:00:37 bnelson
Updated documentation.
Revision 1.6 2008/05/23 03:39:57 bnelson
Fixed the shutdown crash.
Revision 1.5 2008/05/21 01:38:27 bnelson
Added a debug feature to clear memory being allocated.
Revision 1.4 2008/05/16 05:43:22 bnelson
Updated the memory manager so it is faster choosing the allocator to use, doesn't use the pools for anything larger than 1024 bytes, and doesn't issue a warning for large allocations.
Revision 1.3 2007/05/14 23:49:55 bnelson
Updated pool using Singletons to correctly allocate static Arrays.