summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-05-07 08:12:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-05-07 08:12:51 -0300
commit77e7ebca0ab70a7ff00179099a0383314420b2af (patch)
tree2994f81a6262eb2b742b92afb8f000a49eea9906 /lobject.h
parent6d5324f92f0a6e0bb19b2482c437652e3c2f82c0 (diff)
downloadlua-github-77e7ebca0ab70a7ff00179099a0383314420b2af.tar.gz
better alignments (for 64-bit arquitectures) for structures 'Table' and
'TString'
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lobject.h b/lobject.h
index e239f8c6..53febca7 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 2.88 2014/04/30 16:48:44 roberto Exp roberto $
+** $Id: lobject.h,v 2.89 2014/05/01 18:18:06 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -310,9 +310,9 @@ typedef union TString {
struct {
CommonHeader;
lu_byte extra; /* reserved words for short strings; "has hash" for longs */
+ unsigned int hash;
size_t len; /* number of characters in string */
union TString *hnext; /* linked list for hash table */
- unsigned int hash;
} tsv;
} TString;
@@ -462,12 +462,12 @@ typedef struct Table {
CommonHeader;
lu_byte flags; /* 1<<p means tagmethod(p) is not present */
lu_byte lsizenode; /* log2 of size of `node' array */
- struct Table *metatable;
+ int sizearray; /* size of `array' array */
TValue *array; /* array part */
Node *node;
Node *lastfree; /* any free position is before this position */
+ struct Table *metatable;
GCObject *gclist;
- int sizearray; /* size of `array' array */
} Table;