From: Jarkko Hietaniemi Date: Sun, 5 May 2002 17:57:04 +0000 (+0000) Subject: Comment tweaks. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9f650e9466ddbdd698cc73572057033959aec863;p=p5sagit%2Fp5-mst-13.2.git Comment tweaks. p4raw-id: //depot/perl@16417 --- diff --git a/perl.h b/perl.h index 5b7af54..462dc31 100644 --- a/perl.h +++ b/perl.h @@ -3925,10 +3925,10 @@ typedef struct am_table_short AMTS; * Boilerplate macros for initializing and accessing interpreter-local * data from C. All statics in extensions should be reworked to use * this, if you want to make the extension thread-safe. See ext/re/re.xs - * for an example of the use of these macros. + * for an example of the use of these macros, and perlxs.pod for more. * * Code that uses these macros is responsible for the following: - * 1. #define MY_CXT_KEY to a unique string, e.g. "DynaLoader_guts" + * 1. #define MY_CXT_KEY to a unique string, e.g. "DynaLoader::_guts" * 2. Declare a typedef named my_cxt_t that is a structure that contains * all the data that needs to be interpreter-local. * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.