The child process is literally doing nothing but calling POSIX::_exit. I
find it hard to believe that the problem is that a slow machine takes
more than 30 seconds to process that. I think it's more likely there's
another problem here.

  my $pid = fork();
  if (! defined $pid) {
    die "oops, cannot fork: $!";
  }
  if ($pid == 0) {
    # child
    require POSIX;
    POSIX::_exit(42); # no END etc cleanups
  }

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/935525

Title:
  libglib-perl version 2:1.241-1 FTBFS on i386 in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libglib-perl/+bug/935525/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to