Date: 01/17/01
- Next message: fred <email protected>: "[PHP-DEV] PHP 4.0 Bug #8765: Unable to load dynamic library"
- Previous message: fred <email protected>: "[PHP-DEV] PHP 4.0 Bug #8764:"
- In reply to: Zeev Suraski: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Next in thread: Maciek Uhlig: "RE: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Looks like this was my bad :)
Sorry,
Andi
At 01:47 AM 1/17/2001 +0200, Zeev Suraski wrote:
>Yep, you're right. Fixed.
>
>Thanks,
>
>Zeev
>
>At 23:24 16/1/2001, Steven Roussey wrote:
>> > OK. Look at a quick report. I've just installed php4-200101152345. It runs
>> > with mysql-3.23.27-beta. Apache 1.3.12, Solaris 2.6 (local host) and 2.4
>> > (remote connection).
>> >
>> > What I can see is: the offending messages didn't vanish at all (both hosts
>> > are involved):
>> > So, I think it's not fixed yet. Steven, you wrote about 99,8. I suppose
>> > every Apache process here makes this error while ending. I just see it.
>>
>>:)
>>
>>Andi, I hope you are reading this.
>>
>>I looked at the CVS, and my patch was not properly applied. Andi has it
>>looking through the non-persistant destructors, rather than the persistent
>>ones (meaning that plist_entry_destructor is identical to
>>list_entry_destructor).
>>
>>In file zend_list.c replace the plist_entry_destructor definition with:
>>
>>void plist_entry_destructor(void *ptr)
>>{
>> zend_rsrc_list_entry *le = (zend_rsrc_list_entry *) ptr;
>> zend_rsrc_list_dtors_entry *ld;
>>
>> if (zend_hash_index_find(&list_destructors, le->type,(void **)
>>&ld)==SUCCESS) {
>> switch (ld->type) {
>> case ZEND_RESOURCE_LIST_TYPE_STD:
>> if (ld->plist_dtor) {
>> (ld->plist_dtor)(le->ptr);
>> }
>> break;
>> case ZEND_RESOURCE_LIST_TYPE_EX:
>> if (ld->plist_dtor_ex) {
>> ld->plist_dtor_ex(le);
>> }
>> break;
>> EMPTY_SWITCH_DEFAULT_CASE()
>> }
>> } else {
>> zend_error(E_WARNING,"Unknown persistent list entry type in
>>module shutdown (%d)",le->type);
>> }
>>}
>>
>>
>>
>>
>>Sincerely,
>>
>>Steven Roussey
>>Network54.com
>>http://network54.com/?pp=e
>>
>>
>>--
>>PHP Development Mailing List <http://www.php.net/>
>>To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
>>For additional commands, e-mail: php-dev-help <email protected>
>>To contact the list administrators, e-mail: php-list-admin <email protected>
>
>--
>Zeev Suraski <zeev <email protected>>
>CTO & co-founder, Zend Technologies Ltd. http://www.zend.com/
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: fred <email protected>: "[PHP-DEV] PHP 4.0 Bug #8765: Unable to load dynamic library"
- Previous message: fred <email protected>: "[PHP-DEV] PHP 4.0 Bug #8764:"
- In reply to: Zeev Suraski: "Re: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Next in thread: Maciek Uhlig: "RE: [PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

