Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix nqp::getpid on Parrot.
  • Loading branch information
jnthn committed Jun 23, 2013
1 parent f3cab58 commit 7fa12e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/parrot/QAST/Operations.nqp
Expand Up @@ -2296,7 +2296,7 @@ QAST::Operations.add_core_op('getpid', -> $qastcomp, $op {
nqp::die('getenvhash requires no operands');
}
$qastcomp.as_post(QAST::Op.new(
:op('callmethod'), :name('getpid'),
:op('callmethod'), :name('getpid'), :returns(int),
QAST::VM.new( :pirop('getinterp__P') )
))
});

0 comments on commit 7fa12e2

Please sign in to comment.