Hi,
Please correct me if I'm wrong, but as for my understanding nginx works
like this:
// Busy loop
while (true) {
`process events and call callbacks`();
}
I'm writing a module for a piece of software which works the same way.
So, what I need is a mechanism to call both handlers in a busy loop:
while (true) {
`process events and call callbacks`();
`process my piece of software events and call callbacks`();
}
Is this possible?
Thanks.
--
Marat
_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel