summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-07 22:46:00 +0200
committerJames E Keenan <jkeenan@cpan.org>2022-12-30 12:44:32 -0500
commit532aec67f5cea9364bfc74122fbe9f766a3475b1 (patch)
treeb80833a3cdb0230e1b3bf428beaf6b7679595db9 /intrpvar.h
parent772be2bde953d71614029d2bd28ba946ed8034bd (diff)
downloadperl-532aec67f5cea9364bfc74122fbe9f766a3475b1.tar.gz
intrpvar.h - break comment over multiple lines
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 0560e0a3b8..b6243842a4 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -58,7 +58,10 @@ PERLVARI(I, sub_generation, U32, 1) /* incr to invalidate method cache */
#ifdef PERL_HASH_RANDOMIZE_KEYS
#ifdef USE_PERL_PERTURB_KEYS
-PERLVARI(I, hash_rand_bits_enabled, U8, 1) /* used to randomize hash stuff 0 == no-random, 1 == random, 2 == deterministic */
+PERLVARI(I, hash_rand_bits_enabled, U8, 1) /* used to randomize hash stuff
+ 0. no-random
+ 1. random
+ 2. determinsitic */
#endif
PERLVARI(I, hash_rand_bits, UV, 0) /* used to randomize hash stuff */
#endif
@@ -998,7 +1001,7 @@ PERLVARI(I, sv_serial, U32, 0) /* SV serial number, used in sv.c */
PERLVARA(I, sv_consts, SV_CONSTS_COUNT, SV*) /* constant SVs with precomputed hash value */
#ifdef PERL_TRACE_OPS
-PERLVARA(I, op_exec_cnt, OP_max+2, UV) /* Counts of executed OPs of the given type.
+PERLVARA(I, op_exec_cnt, OP_max+2, UV) /* Counts of executed OPs of the given type.
If PERL_TRACE_OPS is enabled, we'll dump
a summary count of all ops executed in the
program at perl_destruct time. For