Re: Forking, Passing Parameters to forks

2002-09-19 Thread david
Jason Frisvold wrote: > Greetings, > > I'm in the process of writing a large network monitoring system in > perl. I want to be sure I'm headed in the right direction, however. > > I have a large MySQL database comprised of all the items that need > monitoring. Each individual row contains exa

RE: Forking, Passing Parameters to forks

2002-09-19 Thread Bob Showalter
> -Original Message- > From: Jason Frisvold [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 10:49 AM > To: Bob Showalter > Cc: [EMAIL PROTECTED] > Subject: RE: Forking, Passing Parameters to forks > > > Hrm ... So, I could create an array of p

Re: Forking, Passing Parameters to forks

2002-09-19 Thread Chad Kellerman
Message- > > > From: Jason Frisvold [mailto:[EMAIL PROTECTED]] > > > Sent: Thursday, September 19, 2002 9:43 AM > > > To: [EMAIL PROTECTED] > > > Subject: Forking, Passing Parameters to forks > > > > > > > > > Greetings, > > >

Re: Forking, Passing Parameters to forks

2002-09-19 Thread Robin Cragg
Hi, we use netsint now, but before that we had a massive PERL driven forked system. The basic flow of the program was: read in data from mySQL table into an array foreach $test (@tests) { if ($pid = fork) { # this is the parent process # we just wait f

RE: Forking, Passing Parameters to forks

2002-09-19 Thread Jason Frisvold
September 19, 2002 9:43 AM > > To: [EMAIL PROTECTED] > > Subject: Forking, Passing Parameters to forks > > > > > > Greetings, > > > > I'm in the process of writing a large network > > monitoring system in > > perl. I want to be

RE: Forking, Passing Parameters to forks

2002-09-19 Thread Bob Showalter
> -Original Message- > From: Jason Frisvold [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 9:43 AM > To: [EMAIL PROTECTED] > Subject: Forking, Passing Parameters to forks > > > Greetings, > > I'm in the process of writing a la

Forking, Passing Parameters to forks

2002-09-19 Thread Jason Frisvold
Greetings, I'm in the process of writing a large network monitoring system in perl. I want to be sure I'm headed in the right direction, however. I have a large MySQL database comprised of all the items that need monitoring. Each individual row contains exactly one monitoring t