Skip to content

Commit

Permalink
remove experimental status from Parrot_getpid function and ParrotInte…
Browse files Browse the repository at this point in the history
…rpreter getpid method, TT #1564
  • Loading branch information
NotFound committed Dec 15, 2010
1 parent c8c15cc commit aaf8008
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
12 changes: 0 additions & 12 deletions DEPRECATED.pod
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,6 @@ use C<get_bool> internally. Rakudo seems to depend on logical ops on PMCs.

L<https://trac.parrot.org/parrot/ticket/1655>

=item Method getpid on ParrotInterpreter [experimental]

Used to test the experimental function Parrot_getpid

L<https://trac.parrot.org/parrot/ticket/1564>

=item Complex PMC [eligible in 3.1]

This perennially broken PMC will be removed.
Expand Down Expand Up @@ -337,12 +331,6 @@ Parrot_str_unescape

L<https://trac.parrot.org/parrot/ticket/1628>

=item Parrot_getpid [experimental]

Get process id, experimental.

L<https://trac.parrot.org/parrot/ticket/1564>

=item Parrot_load_bytecode_file [experimental]

Load a .pbc file into the interpreter. Experimental.
Expand Down
4 changes: 3 additions & 1 deletion config/gen/platform/ansi/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Parrot process id functions.
=item C<UINTVAL Parrot_getpid(void)>
Parrot wrapper around standard library C<getpid()> function, returning an UINTVAL.
Parrot wrapper around standard library C<getpid()> function.
Return 0 in platforms unsupported or without a pid concept.
=cut
Expand Down
3 changes: 0 additions & 3 deletions src/pmc/parrotinterpreter.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -795,15 +795,12 @@ If no PMC object is provided, the current standard error handle is returned.
Returns the pid of the current process, 0 in platforms that doesn't
support it.

This method is experimental. See TT #1564.

=cut

*/

METHOD getpid() {
INTVAL id = Parrot_getpid();
Parrot_warn_experimental(INTERP, "Method getpid on ParrotInterpreter is experimental");
RETURN(INTVAL id);
}

Expand Down

0 comments on commit aaf8008

Please sign in to comment.