Re: POE and daemonization

2002-05-01 Thread Peter Chen
On Wed, 2002-05-01 at 03:05, Andrew A. Chen wrote: > I am unsure how kosher this solution is, but it's "functional" as far as I > know. I jacked the daemonize() routine out of perlfaq and called it just > before $poe_kernel->run(); See below. > > -a > > daemonize(); > $poe_kernel->run(); > e

Re: POE and daemonization

2002-05-01 Thread Rocco Caputo
On Wed, May 01, 2002 at 03:23:24AM -0400, Peter Chen wrote: > On Wed, 2002-05-01 at 03:05, Andrew A. Chen wrote: > > I am unsure how kosher this solution is, but it's "functional" as far as I > > know. I jacked the daemonize() routine out of perlfaq and called it just > > before $poe_kernel->ru

RE: POE and daemonization

2002-05-01 Thread Rob Bloodgood
> What is the convention for handling daemonization in a POE application? > > In particular, what I am wondering is whether typically one daemonizes > before $poe_kernel->run() or do the daemonization in one of the > "application manager" sessions. > > For example, I am considering using what I ca