Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C++ (http://www.velocityreviews.com/forums/f39-c.html)
-   -   per-thread memory mangement techniques for c++... (http://www.velocityreviews.com/forums/t460878-per-thread-memory-mangement-techniques-for-c.html)

Chris Thomasson 03-03-2007 11:05 PM

per-thread memory mangement techniques for c++...
 
If you have been following the "Is this standard c++..." thread in this
group, then you may know that I am currently very busy developing a stable
and robust implementation for my multi-thread memory allocator algorithm.
You can get some more information on it by reading that particular thread.
Anyway, here is a link to where I am going to stick all of the example code:

http://appcore.home.comcast.net/vzoom/malloc/
(the allocators home page...)


Here is what I am tinkering around with now wrt per-thread stack memory
management:

http://appcore.home.comcast.net/vzoo...oc/example.cpp
(simple example code...)

Can anybody notice any problems right off the bat? I am a hardcore C
programmer whose C++ skills can be improved upon for sure! IMHO, the task of
implementing my design in C++ will be well worth it in the long run... I
personally think this particular high-performance multi-threaded allocator
algorithm is going to benefit from C++, on the flip side, I also think it
will be a fairly valuable tool for many different types of C++ applications
that make use of any sort of concurrency.


Any thoughts?




All times are GMT. The time now is 07:57 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57