Re: Outstanding parrot issues?
[email protected] (Leopold Toetsch) Sun, 2 May 2004 11:54:49 +0200
| Newsgroups | perl.perl6.internals,perl.ponie.dev |
|---|---|
| Message-ID | <[email protected]> |
Arthur Bergman <[email protected]> wrote: > ... The obvious answer > seems to be to have the embedding interface set the top of stack in > each embedding function if it is not set. This would do the right thing > and make it easy to embed parrot. No. I've posted already this example: { PMC *some = pmc_new(...); { PMC *another = pmc_new(...); } // some may be dead here } The braces denote stack frames. > Arthur leo