diff options
author | Joshua Pritikin <joshua.pritikin@db.com> | 1999-01-12 13:06:01 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-01-13 17:26:44 +0000 |
commit | b0fffe302ebecea108e16fbf94d910405cdc8714 (patch) | |
tree | 21fb13f9a9c11e9b4a6cf8a4b647510ffd53422a /pod | |
parent | 9c007264caa0e1aed57010dc2950fe35f9d8347e (diff) | |
download | perl-b0fffe302ebecea108e16fbf94d910405cdc8714.tar.gz |
modglobal w/ spelling fixes
To: perl5-porters@perl.org
Message-ID: <Pine.GSO.4.02.9901121805290.625-100000@eq1062.wks.na.deuba.com>
p4raw-id: //depot/cfgperl@2596
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlguts.pod | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 5bc521db75..9b16a8a026 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2171,6 +2171,15 @@ Do magic after a value is assigned to the SV. See C<sv_magic>. int mg_set (SV* sv) +=item modglobal + +C<modglobal> is a general purpose, interpreter global HV for use by +extensions. While it could hold extension specific information, it is +meant primarily for information that needs to be shared between +extensions. Moreover, while it could be used for any kind of +information, it is meant for information that should be not accessible +in the usual way from the perl symbol table. + =item Move The XSUB-writer's interface to the C C<memmove> function. The C<s> is the |