diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-08 20:42:41 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-02-08 20:42:41 -0200 |
commit | e01f5e680951a66bd67a22eeed1d9e05ab30b9f2 (patch) | |
tree | 99ff32eedd3bf3194561f5a2d916d948ba81c4f9 /ldo.c | |
parent | cbfc581990db2e20ee06670dbf84f28bcfe1dc42 (diff) | |
download | lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.gz lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.bz2 lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.zip |
better order of record fields for 64-bit machines
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,10 +32,10 @@ | |||
32 | 32 | ||
33 | /* chain list of long jump buffers */ | 33 | /* chain list of long jump buffers */ |
34 | struct lua_longjmp { | 34 | struct lua_longjmp { |
35 | jmp_buf b; | ||
36 | struct lua_longjmp *previous; | 35 | struct lua_longjmp *previous; |
37 | CallInfo *ci; /* index of call info of active function that set protection */ | 36 | CallInfo *ci; /* index of call info of active function that set protection */ |
38 | StkId top; /* top stack when protection was set */ | 37 | StkId top; /* top stack when protection was set */ |
38 | jmp_buf b; | ||
39 | int allowhooks; /* `allowhook' state when protection was set */ | 39 | int allowhooks; /* `allowhook' state when protection was set */ |
40 | volatile int status; /* error code */ | 40 | volatile int status; /* error code */ |
41 | }; | 41 | }; |