summaryrefslogtreecommitdiff
path: root/hv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-12 20:00:18 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-12 20:00:18 +0000
commitcbae396092f5aa3ab7374d8414eb06704dfb41d6 (patch)
treeb6df14e133cfcdd478b8fb8f9ea0a3f4ac36fa48 /hv.h
parent3341d187a8c660dcdef29c6ff668870f1d944ae1 (diff)
downloadperl-cbae396092f5aa3ab7374d8414eb06704dfb41d6.tar.gz
In the shared string table, store the HE and HEK next to each other
in one malloc()ed block. p4raw-id: //depot/perl@24808
Diffstat (limited to 'hv.h')
-rw-r--r--hv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/hv.h b/hv.h
index 3115dba91c..ac4bdd33c8 100644
--- a/hv.h
+++ b/hv.h
@@ -29,6 +29,10 @@ struct hek {
is UTF-8 */
};
+struct shared_he {
+ struct he shared_he_he;
+ struct hek shared_he_hek;
+};
/* Subject to change.
Don't access this directly.