can-mohan 0 Junior Poster

Hi,

I have overloaded new function but unfortunetly never been able to execute global handler for requesting more memory access on my compiler. I also don't understand as per below code snippet if we invoke the
global handler for requesting more memory how it is gling to allocate to P.

I appreciate if anybody can through some light on this.

void * Pool:: operator new ( size_t size ) throw( const char *)
 {   int n=0;
    while(1)
    {
    void *p = malloc (100000000L);

    if(p==0)
    {
     new_handler ghd= set_new_handler(0);//deinstall curent handler
     set_new_handler(ghd);// install global handler for more memory access
     if(ghd)
      (*ghd)();
      else
      throw "out of memory exception";      
     } 

      else
      {
      return p;    
      }

 }

}

~Mohan

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.