[svn:parrot] r40734 - branches/context_pmc3/include/parrot

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Aug 23 12:50:47 UTC 2009


Author: bacek
Date: Sun Aug 23 12:50:47 2009
New Revision: 40734
URL: https://trac.parrot.org/parrot/changeset/40734

Log:
[core][docs] Add small docs about new Context related macros.

Modified:
   branches/context_pmc3/include/parrot/interpreter.h

Modified: branches/context_pmc3/include/parrot/interpreter.h
==============================================================================
--- branches/context_pmc3/include/parrot/interpreter.h	Sun Aug 23 12:50:28 2009	(r40733)
+++ branches/context_pmc3/include/parrot/interpreter.h	Sun Aug 23 12:50:47 2009	(r40734)
@@ -199,6 +199,9 @@
 
 /*
  * Helper macros to fetch fields from context.
+ *
+ * Not considered as part of public API. Should be replaced with proper accessor
+ * functions to manipulate Context.
  */
 #define CURRENT_CONTEXT(interp)             (interp->ctx)
 #define CONTEXT_FIELD(interp, ctx, name)    ((Parrot_ctx_get_context(interp, ctx))->name)


More information about the parrot-commits mailing list