summaryrefslogtreecommitdiff
path: root/bin/Process_Unix.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Process_Unix.pm')
-rw-r--r--bin/Process_Unix.pm35
1 files changed, 0 insertions, 35 deletions
diff --git a/bin/Process_Unix.pm b/bin/Process_Unix.pm
deleted file mode 100644
index 0537074dbb7..00000000000
--- a/bin/Process_Unix.pm
+++ /dev/null
@@ -1,35 +0,0 @@
-package Process;
-
-$EXE_EXT = "";
-
-sub Create
-{
- my $name = shift;
- my $args = shift;
- my $self = [];
- unless ($self->[0] = fork ())
- {
- unless (fork ())
- {
- exec $name." ".$args;
- die "no exec";
- }
- exit 0;
- }
- bless $self;
-}
-
-sub Kill
-{
- my $self = shift;
- kill (1, $self->[0]);
-}
-
-sub Wait
-{
- my $self = shift;
- waitpid ($self->[0], 0);
-}
-
-
-1;