summaryrefslogtreecommitdiff
path: root/pod/perlembed.pod
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2002-09-10 19:19:05 +1000
committerhv <hv@crypt.org>2002-09-26 07:31:42 +0000
commit7fef744d4001fa86c45f1d45805860ed8598b95a (patch)
tree9c2378050541b6cca7d6fdd11155a0e791a09476 /pod/perlembed.pod
parentabeab9d3f076e8a1b217f5132e9d6271075a909a (diff)
downloadperl-7fef744d4001fa86c45f1d45805860ed8598b95a.tar.gz
perlembed.pod: make some examples work with multiplicity
From: "Brendan O'Dea" <bod@debian.org> Message-ID: <20020909231905.GA31868@londo.odea.dropbear.id.au> p4raw-id: //depot/perl@17916
Diffstat (limited to 'pod/perlembed.pod')
-rw-r--r--pod/perlembed.pod21
1 files changed, 12 insertions, 9 deletions
diff --git a/pod/perlembed.pod b/pod/perlembed.pod
index 2d6b20dce0..b9aae2d87a 100644
--- a/pod/perlembed.pod
+++ b/pod/perlembed.pod
@@ -386,6 +386,8 @@ been wrapped here):
#include <EXTERN.h>
#include <perl.h>
+ static PerlInterpreter *my_perl;
+
/** my_eval_sv(code, error_check)
** kinda like eval_sv(),
** but we pop the return value off the stack
@@ -481,17 +483,18 @@ been wrapped here):
main (int argc, char **argv, char **env)
{
- PerlInterpreter *my_perl = perl_alloc();
char *embedding[] = { "", "-e", "0" };
AV *match_list;
I32 num_matches, i;
- SV *text = NEWSV(1099,0);
+ SV *text;
STRLEN n_a;
+ my_perl = perl_alloc();
perl_construct(my_perl);
perl_parse(my_perl, NULL, 3, embedding, NULL);
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
+ text = NEWSV(1099,0);
sv_setpv(text, "When he is at a convenience store and the bill comes to some amount like 76 cents, Maynard is aware that there is something he *should* do, something that will enable him to get back a quarter, but he has no idea *what*. He fumbles through his red squeezey changepurse and gives the boy three extra pennies with his dollar, hoping that he might luck into the correct amount. The boy gives him back two of his own pennies and then the big shiny quarter that is his prize. -RICHH");
if (match(text, "m/quarter/")) /** Does text contain 'quarter'? **/
@@ -747,7 +750,7 @@ with L<perlfunc/my> whenever possible.
#define DO_CLEAN 0
#endif
- static PerlInterpreter *perl = NULL;
+ static PerlInterpreter *my_perl = NULL;
int
main(int argc, char **argv, char **env)
@@ -758,16 +761,16 @@ with L<perlfunc/my> whenever possible.
int exitstatus = 0;
STRLEN n_a;
- if((perl = perl_alloc()) == NULL) {
+ if((my_perl = perl_alloc()) == NULL) {
fprintf(stderr, "no memory!");
exit(1);
}
- perl_construct(perl);
+ perl_construct(my_perl);
- exitstatus = perl_parse(perl, NULL, 2, embedding, NULL);
+ exitstatus = perl_parse(my_perl, NULL, 2, embedding, NULL);
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
if(!exitstatus) {
- exitstatus = perl_run(perl);
+ exitstatus = perl_run(my_perl);
while(printf("Enter file name: ") && gets(filename)) {
@@ -783,8 +786,8 @@ with L<perlfunc/my> whenever possible.
}
PL_perl_destruct_level = 0;
- perl_destruct(perl);
- perl_free(perl);
+ perl_destruct(my_perl);
+ perl_free(my_perl);
exit(exitstatus);
}