Re: Help With signals. Got it working Thanks.

2006-01-06 Thread Leif Ericksen
This is the person that gave me the direction I needed to get my signals working.. (Sorry for the top post here... I wanted the most important part out first..) For the actual FULL code that I am working with at present see the bottom of the message. On Sat, 2006-01-07 at 01:14 +0100, John Doe w

Re: Help With signals.

2006-01-06 Thread John Doe
Leif Ericksen am Samstag, 7. Januar 2006 00.12: > On Fri, 2006-01-06 at 15:58 -0700, Wiggins d'Anconia wrote: > > Please bottom post... > > > > Leif Ericksen wrote: > > > Actually not quite what you thought on the output... > > > $ ./myt.pl > > > ZERO:0 => SIG{'ZERO'} = &sigcat > > > HUP:1=>

Re: Help With signals.

2006-01-06 Thread Leif Ericksen
On Fri, 2006-01-06 at 15:58 -0700, Wiggins d'Anconia wrote: > Please bottom post... > > Leif Ericksen wrote: > > Actually not quite what you thought on the output... > > $ ./myt.pl > > ZERO:0 => SIG{'ZERO'} = &sigcat > > HUP:1=> SIG{'HUP'} = &sigcat > > INT:2=> SIG{'INT'} = &sigcat > > Q

Re: Help With signals.

2006-01-06 Thread Wiggins d'Anconia
Please bottom post... Leif Ericksen wrote: > Actually not quite what you thought on the output... > $ ./myt.pl > ZERO:0 => SIG{'ZERO'} = &sigcat > HUP:1=> SIG{'HUP'} = &sigcat > INT:2=> SIG{'INT'} = &sigcat > QUIT:3 => SIG{'QUIT'} = &sigcat > ILL:4=> SIG{'ILL'} = &sigcat > TRAP:5

Re: Help With signals.

2006-01-06 Thread Leif Ericksen
Actually not quite what you thought on the output... $ ./myt.pl ZERO:0 => SIG{'ZERO'} = &sigcat HUP:1=> SIG{'HUP'} = &sigcat INT:2=> SIG{'INT'} = &sigcat QUIT:3 => SIG{'QUIT'} = &sigcat ILL:4=> SIG{'ILL'} = &sigcat TRAP:5 => SIG{'TRAP'} = &sigcat ABRT:6 => SIG{'ABRT'} = &sigcat

Re: Help With signals.

2006-01-06 Thread Wiggins d'Anconia
Leif Ericksen wrote: > I am trying to set up a routine to trap signals so that I can pass it to > a sub that will act on the signals and it does not seem to be > functioning as I would think. > > SAMPLE: > I will admit some of the code was taken from the camel book. :) I do > have use strict on

Help With signals.

2006-01-06 Thread Leif Ericksen
I am trying to set up a routine to trap signals so that I can pass it to a sub that will act on the signals and it does not seem to be functioning as I would think. SAMPLE: I will admit some of the code was taken from the camel book. :) I do have use strict on. my $name = "\n"; my $i = 0; def