summaryrefslogtreecommitdiff
path: root/bin/Process_Unix.pm
blob: 088a1cd7a53147f77c0d3a80c83d638374a7ac1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package Process;

$EXE_EXT = "";

sub Create
{
  my $name = shift;
  my $args = shift;
  my $self = [];

  FORK:
  {
    if ($self->[0] = fork)
    {
      #parent here
      bless $self;
    }
    elsif (defined $self->[0])
    {
      #child here
      exec $name." ".$args;
      die "exec failed";
    }
    elsif ($! =~ /No more process/)
    {
      #EAGAIN, supposedly recoverable fork error
      sleep 5;
      redo FORK;
    }
    else 
    {
      # weird fork error
      die "Can't fork: $!\n";
    }
  }
}

sub Kill
{
  my $self = shift;
  kill (1, $self->[0]);
}

sub Wait
{
  my $self = shift;
  waitpid ($self->[0], 0);
}


1;