cvsuser 05/03/13 01:24:26
Modified: tools/dev parrot_api.pl Log: Doc clarification. Revision Changes Path 1.8 +4 -4 parrot/tools/dev/parrot_api.pl Index: parrot_api.pl =================================================================== RCS file: /cvs/public/parrot/tools/dev/parrot_api.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- parrot_api.pl 13 Mar 2005 09:16:28 -0000 1.7 +++ parrot_api.pl 13 Mar 2005 09:24:26 -0000 1.8 @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # Copyright: 2004 The Perl Foundation. All Rights Reserved. -# $Id: parrot_api.pl,v 1.7 2005/03/13 09:16:28 jhi Exp $ +# $Id: parrot_api.pl,v 1.8 2005/03/13 09:24:26 jhi Exp $ =head1 NAME @@ -86,9 +86,9 @@ =head2 Data is not an API -Consider making the data const(ant) heap (and accessed through a real -API that takes care of synchronization, data as such is not a good API -unless it's constant). +Consider making the data const(ant), or moving it into the heap (and +accessed through a real API that takes care of synchronization, data +as such is not a good API unless it's constant). Think multithreaded access, or just plain reentrancy (think recursion).
