Author: bernhard
Date: Thu May  4 15:10:56 2006
New Revision: 12507

Modified:
   trunk/src/pmc/exception.pmc
   trunk/src/pmc/sarray.pmc

Log:
Mention where the SArray PMC is used.


Modified: trunk/src/pmc/exception.pmc
==============================================================================
--- trunk/src/pmc/exception.pmc (original)
+++ trunk/src/pmc/exception.pmc Thu May  4 15:10:56 2006
@@ -1,5 +1,5 @@
 /*
-Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
+Copyright: 2001-2006 The Perl Foundation.  All Rights Reserved.
 $Id$
 
 =head1 NAME

Modified: trunk/src/pmc/sarray.pmc
==============================================================================
--- trunk/src/pmc/sarray.pmc    (original)
+++ trunk/src/pmc/sarray.pmc    Thu May  4 15:10:56 2006
@@ -1,15 +1,14 @@
 /*
-Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
+Copyright: 2001-2006 The Perl Foundation.  All Rights Reserved.
 $Id$
 
 =head1 NAME
 
-src/pmc/sarray.pmc - Subroutine Parameter Array
+src/pmc/sarray.pmc - Simple Array or Subroutine Parameter Array
 
 =head1 DESCRIPTION
 
-These are the vtable functions for the SArray base class
-
+Simple Array or Subroutine Parameter Array PMC.
 SArray data are kept in an malloced array of C<HashEntry>'s:
 
 =over 4
@@ -28,12 +27,23 @@
 
 =back
 
-This is the Simple (or Static) Array class for parameter
-passing according to PDD 3.
-
 SArrays are fixed size, implying that the first operation on it must be
 setting its size, and that only the most important vtable methods are
-implemented
+implemented.
+
+Currently SArray's are used for:
+
+=over4
+
+=item Global data per interpreter. C<interpreter->iglobals>
+
+=item For implementing lists, see F<src/list.c>. 
+
+=item For implementing lists, see F<src/list.c>. 
+
+=item Base class of the Exception PMC.
+
+=back
 
 =head2 Functions
 

Reply via email to