From 394646891cc406ce2a0f1586409c043c9caeab4e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 13 Aug 2008 14:01:33 -0300 Subject: new field 'status' in CallInfo structure --- lstate.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index dec27d24..b34bb163 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.33 2008/06/23 16:51:08 roberto Exp roberto $ +** $Id: lstate.h,v 2.34 2008/06/26 19:42:45 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -81,7 +81,8 @@ typedef struct CallInfo { StkId func; /* function index in the stack */ StkId top; /* top for this function */ const Instruction *savedpc; - int nresults; /* expected number of results from this function */ + short nresults; /* expected number of results from this function */ + lu_byte status; int tailcalls; /* number of tail calls lost under this entry */ } CallInfo; -- cgit v1.2.3-55-g6feb