On Wed, 13 Mar 2002, Stas Bekman wrote: > Under threaded mpm, is it safe to use a static variable which is set > once at the bootstrap time and then is used only to read from.
100% ok if the module is loaded at startup. there would be a small race condition if not loaded until request time. however, rather than duplicate this table as 1.x did, it would be better to patch httpd-2.0 to either export a function that returns the table or add an optional function to mod_status to retrieve it. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
