[PHP-DEV] le_ why static?

2001-01-26 Thread Sam Liddicott
Why are le_* garbage destructor handles declared static? As far as I can tell this means other c files in the same module can't "extern" it but as it is static in file scope it has none of the other benefits of being static? Is it to do with threading? What? Sam -- PHP Development Mailing

Re: [PHP-DEV] le_ why static?

2001-01-26 Thread Andrei Zmievski
On Fri, 26 Jan 2001, Sam Liddicott wrote: Why are le_* garbage destructor handles declared static? As far as I can tell this means other c files in the same module can't "extern" it but as it is static in file scope it has none of the other benefits of being static? Is it to do with

Re: [PHP-DEV] le_ why static?

2001-01-26 Thread Sascha Schumann
On Fri, 26 Jan 2001, Sam Liddicott wrote: Why are le_* garbage destructor handles declared static? As far as I can tell this means other c files in the same module can't "extern" it but as it is static in file scope it has none of the other benefits of being static? Is it to do with