tagged release 0.6.4
[parrot.git] / config / gen / platform / ansi / exec.c
blob4ceba111a1f85695da96513f22ab27293c2ff9a3
1 /*
2 * $Id$
3 * Copyright (C) 2004-2007, The Perl Foundation.
4 */
6 /*
8 =head1 NAME
10 config/gen/platform/ansi/exec.c
12 =head1 DESCRIPTION
14 RT#48264
16 =head2 Functions
18 =over 4
20 =cut
26 =item C<INTVAL Parrot_Run_OS_Command(Parrot_Interp interp, STRING *command)>
28 Spawn a subprocess
30 =cut
34 INTVAL
35 Parrot_Run_OS_Command(Parrot_Interp interp, STRING *command)
37 Parrot_warn(NULL, PARROT_WARNINGS_PLATFORM_FLAG,
38 "Parrot_Run_OS_Command not implemented");
39 return 0;
44 =item C<INTVAL Parrot_Run_OS_Command_Argv(Parrot_Interp interp, PMC *cmdargs)>
46 RT#48260: Not yet documented!!!
48 =cut
52 INTVAL
53 Parrot_Run_OS_Command_Argv(Parrot_Interp interp, PMC *cmdargs)
55 Parrot_warn(NULL, PARROT_WARNINGS_PLATFORM_FLAG,
56 "Parrot_Run_OS_Command_Argv not implemented");
57 return 0;
62 =item C<void Parrot_Exec_OS_Comman(Parrot_Interp interp, STRING *command)>
64 RT#48260: Not yet documented!!!
66 =cut
70 void
71 Parrot_Exec_OS_Comman(Parrot_Interp interp, STRING *command)
73 real_exception(interp, NULL, NOSPAWN, "Exec not implemented");
78 =back
80 =cut
85 * Local variables:
86 * c-file-style: "parrot"
87 * End:
88 * vim: expandtab shiftwidth=4: