tomw1975 has asked for the wisdom of the Perl Monks concerning the following question:
my_perl = perl_alloc();
perl_construct(my_perl);
perl_parse(my_perl, xs_init, 2, my_argv, (char **)NULL);
perl_run(my_perl); Perldatabase(pseudo, queue);
Now I would have though perl_free(my_perl) should do something but it appears not to release any memory?perl_destruct (my_perl); perl_free(my_perl); return (queue);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jeffa) Re: Yet another Embedding question
by jeffa (Bishop) on Jul 28, 2003 at 16:45 UTC | |
by tomw1975 (Sexton) on Jul 28, 2003 at 17:06 UTC | |
|
Re: Yet another Embedding question
by PodMaster (Abbot) on Jul 28, 2003 at 17:28 UTC | |
by tomw1975 (Sexton) on Jul 28, 2003 at 18:34 UTC | |
by tomw1975 (Sexton) on Jul 28, 2003 at 21:47 UTC | |
|
Re: Yet another Embedding question
by TomDLux (Vicar) on Jul 28, 2003 at 17:26 UTC |