--- Sam Liddicott <[EMAIL PROTECTED]> wrote:
> My overloaded classes are now registered in MINIT with:
> 
> INIT_OVERLOADED_CLASS_ENTRY()
> zend_register_internal_class()
> ..zend_register_list_destructors_ex
> 
> And all seems mostly fine;
> 
> except the second time apache serves a request, one of the classes (!!) has
> been de-registered!  As shown by get_declared_classes() in the script.
> 
> Swig is generating all the classes the same way so I'm asking if anyone
> might know the cause for this.
> 

emalloc will get rid of your memory on each requset.. if you use emalloc in the
MINIT after the first request the memory will be free'd. use malloc for
persistant memory.

 - Brad

__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to