in reply to Modifying an object in a fork

How do I return the object from the fork to my original test process?

You use threads

Replies are listed 'Best First'.
Re^2: Modifying an object in a fork
by nysus (Parson) on Mar 11, 2018 at 23:36 UTC

    Threads aren't compiled into my install. I guess to keep things simple I can just write the object to a disk with storable.

    $PM = "Perl Monk's";
    $MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate Priest";
    $nysus = $PM . ' ' . $MCF;
    Click here if you love Perl Monks

      Then use forks :)