Ticket #377: some_docs_fixes.patch

File some_docs_fixes.patch, 2.2 KB (added by ronaldws, 13 years ago)
  • docs/multidispatch.pod

     
    88=head1 CAVEATS 
    99 
    1010XXX - Part or all of this document is outdated.  Especially the "the MMD system 
    11 doesn't handle inheritance" bit.  Please refer to PDD03 at this moment while we 
     11doesn't handle inheritance" bit.  Please refer to PDD27 at this moment while we 
    1212rewrite or merge this document.  We apologize for the inconvenience. 
    1313 
    1414=head1 SYNOPSIS 
  • docs/vtables.pod

     
    161161 
    162162The master list of VTABLE interfaces can be found in F<src/vtable.tbl> in 
    163163the root directory of the Parrot source, with documentation in 
    164 F<docs/pdds/pdd02_vtables.pod>. A few of these are very important, for 
     164F<docs/pdds/pdd17_pmc.pod>. A few of these are very important, for 
    165165instance: 
    166166 
    167167=over 3 
  • docs/debug.pod

     
    5858garbage collector. 
    5959 
    6060Within the C<--gc-debug> mode, there is another tool to help narrow down the 
    61 problem. You can edit F<src/gc/api.c> and C<#define> the C<GC_VERBOSE> flag to 
     61problem. You can edit F<include/parrot/gc_api.h> and C<#define> the C<GC_VERBOSE> flag to 
    62621.  After recompiling C<parrot>, the garbage collector will perform additional 
    6363checks. After the garbage collector has traced all objects to find which ones 
    6464are still alive, it will scan through all of the dead objects to see if any of 
  • include/parrot/settings.h

     
    2727 
    2828/* Helpful internal macro for testing whether we are currently 
    2929 * debugging garbage collection and memory management. See also the 
    30  * definition of GC_VERBOSE in src/gc/api.c. */ 
     30 * definition of GC_VERBOSE in include/parrot/gc_api.h. */ 
    3131#if DISABLE_GC_DEBUG 
    3232#  define GC_DEBUG(interp) 0 
    3333#else