On Tue, Nov 18, 2003 at 01:29:50AM +0100, David Herrero wrote:
> I need to implement a control module that creates a child process to
> receive request to modify a global variable of Apache, if it creates a
> child that has a copy of this variable, the other process doesn't view
> the change. Can i insert this global variable into scoreboard structure
> and int this way all all the processes can view the changes in this
> variable?

No, but you can create your own shared memory segment in one of the
hooks that gets run in the parent process, and then it will be inherited
in your child processes.

-aaron

Reply via email to