Differences between version 2 and predecessor to the previous major change of perlhack(1).
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Monday, June 3, 2002 6:50:47 pm | by perry | Revert |
Older page: | version 1 | Last edited on Monday, June 3, 2002 6:50:47 pm | by perry | Revert |
@@ -740,10 +740,10 @@
for a Perl interpreter. It's quite a simple function, and
the guts of it looks like this:
- my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
-Here you see an example of Perl's system abstraction, which we'll see later: PerlMem_malloc is either your system's malloc, or Perl's own malloc as defined in ''malloc.c'' if you selected that option at configure time.
+ my_perl = (!
PerlInterpreter*)!
PerlMem_malloc(sizeof(!
PerlInterpreter));
+Here you see an example of Perl's system abstraction, which we'll see later: !
PerlMem_malloc is either your system's malloc, or Perl's own malloc as defined in ''malloc.c'' if you selected that option at configure time.
Next, in line 7, we construct the interpreter; this sets up
all the special variables that Perl needs, the stacks, and