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

Search:

Type: Posts; User: OReubens

Search: Search took 0.75 seconds.

  1. Re: How best to prevent memory exhaustion in time-critical dynamic programming?

    And your response and changed code, pretty much prooves my point at the bottom in #6.

    You're missing the whole point and are just looking at address space within your own app and failing to grasp...
  2. Re: How best to prevent memory exhaustion in time-critical dynamic programming?

    And following up on my own post...
    CreateMemoryResourceNotification
    QueryMemoryResourceNotification
  3. Re: How best to prevent memory exhaustion in time-critical dynamic programming?

    Probably, but it's a wrong approach to the problem :)


    No this would be a failure of the programmer of the memory intensive app to properly tailor their app for use under circumstances where...
  4. Re: How best to prevent memory exhaustion in time-critical dynamic programming?

    this doesn't actually work. because you cal allocate considerably more than the system has RAM for, all this extra memory gets moved into the swap file, and it isn't until the swap file is full that...
  5. Re: How best to prevent memory exhaustion in time-critical dynamic programming?

    A tricky question actually.

    the simple solution is... "use as little memory as you can to get a reasonable performance gain".

    Allocating more than "a couple hundred Mb" on Win32 for a long...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured