CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: OReubens

Search: Search took 0.34 seconds.

  1. Replies
    9
    Views
    2,885

    Re: Managing memory with multiple heaps

    no, if you don't specify an allocator, you'll get the single default one.
    if you need multiple system heaps, you'll need to explicitely declare/define your containers to need an alternative...
  2. Replies
    9
    Views
    2,885

    Re: Managing memory with multiple heaps

    As 2kaud mentioned. in multithreaded apps it can be a way to increase performance by not having each thread contend for the same heap. Note that this does mean that memory you allocate in one...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured