diff options
author | Jim Cromie <jim.cromie@gmail.com> | 2009-11-23 11:57:15 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-11-24 10:41:11 +0100 |
commit | 9aa9f4999e15926df7a18fb2d5cc297f90e02e67 (patch) | |
tree | 1378e778056c8954db96ab277971cc40c3fc7295 /pod | |
parent | 58fa074c95937d22a584fe789986e618c9fec5ff (diff) | |
download | perl-9aa9f4999e15926df7a18fb2d5cc297f90e02e67.tar.gz |
add mention of PERL_MEM_LOG in perlrun.pod
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlrun.pod | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index f89c979c75..570ff65f0d 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -1245,6 +1245,16 @@ see L<perlsec/"Algorithmic Complexity Attacks"> for more information. B<Do not disclose the hash seed> to people who don't need to know it. See also hash_seed() of L<Hash::Util>. +=item PERL_MEM_LOG +X<PERL_MEM_LOG> + +If your perl was compiled with -Accflags=-DPERL_MEM_LOG, setting envar +PERL_MEM_LOG=1mst writes (m)emory and (s)v debug messages with +(t)imestamps to stdout(1) instead of stderr(2). You can write to +other opened fds too, in a variety of ways; + + bash$ 3>foo3 PERL_MEM_LOG=3m perl ... + =item PERL_ROOT (specific to the VMS port) X<PERL_ROOT> |