Change 31412 by [EMAIL PROTECTED] on 2007/06/18 08:27:59
Remove PERL_MAGIC_mutex
Affected files ...
... //depot/perl/dump.c#268 edit
... //depot/perl/perl.h#785 edit
... //depot/perl/pod/perlguts.pod#146 edit
Differences ...
==== //depot/perl/dump.c#268 (text) ====
Index: perl/dump.c
--- perl/dump.c#267~31369~ 2007-06-12 01:43:55.000000000 -0700
+++ perl/dump.c 2007-06-18 01:27:59.000000000 -0700
@@ -1170,7 +1170,6 @@
{ PERL_MAGIC_isaelem, "isaelem(i)" },
{ PERL_MAGIC_nkeys, "nkeys(k)" },
{ PERL_MAGIC_dbline, "dbline(l)" },
- { PERL_MAGIC_mutex, "mutex(m)" },
{ PERL_MAGIC_shared_scalar, "shared_scalar(n)" },
{ PERL_MAGIC_collxfrm, "collxfrm(o)" },
{ PERL_MAGIC_tiedelem, "tiedelem(p)" },
==== //depot/perl/perl.h#785 (text) ====
Index: perl/perl.h
--- perl/perl.h#784~31404~ 2007-06-17 07:48:11.000000000 -0700
+++ perl/perl.h 2007-06-18 01:27:59.000000000 -0700
@@ -3729,7 +3729,6 @@
#define PERL_MAGIC_nkeys 'k' /* scalar(keys()) lvalue */
#define PERL_MAGIC_dbfile 'L' /* Debugger %_<filename */
#define PERL_MAGIC_dbline 'l' /* Debugger %_<filename element */
-#define PERL_MAGIC_mutex 'm' /* for lock op */
#define PERL_MAGIC_shared 'N' /* Shared between threads */
#define PERL_MAGIC_shared_scalar 'n' /* Shared between threads */
#define PERL_MAGIC_collxfrm 'o' /* Locale transformation */
==== //depot/perl/pod/perlguts.pod#146 (text) ====
Index: perl/pod/perlguts.pod
--- perl/pod/perlguts.pod#145~31410~ 2007-06-18 00:48:56.000000000 -0700
+++ perl/pod/perlguts.pod 2007-06-18 01:27:59.000000000 -0700
@@ -1045,7 +1045,6 @@
k PERL_MAGIC_nkeys vtbl_nkeys scalar(keys()) lvalue
L PERL_MAGIC_dbfile (none) Debugger %_<filename
l PERL_MAGIC_dbline vtbl_dbline Debugger %_<filename element
- m PERL_MAGIC_mutex vtbl_mutex ???
o PERL_MAGIC_collxfrm vtbl_collxfrm Locale collate transformation
P PERL_MAGIC_tied vtbl_pack Tied array or hash
p PERL_MAGIC_tiedelem vtbl_packelem Tied array or hash element
End of Patch.