From e04f7ed4509af1577c10ead8e5d7d55c65754bf8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 18 Dec 2001 18:52:30 -0200 Subject: first version of Lua "stackless" --- lobject.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 9d197af2..a8dcf35e 100644 --- a/lobject.h +++ b/lobject.h @@ -248,20 +248,6 @@ typedef struct Table { #define sizenode(t) (twoto((t)->lsizenode)) #define sizearray(t) ((t)->sizearray) -/* -** informations about a call (for debugging) -*/ -typedef struct CallInfo { - struct CallInfo *prev; /* linked list */ - StkId base; /* base for called function */ - const Instruction **pc; /* current pc of called function */ - int lastpc; /* last pc traced */ - int line; /* current line */ - int refi; /* current index in `lineinfo' */ -} CallInfo; - -#define ci_func(ci) (clvalue((ci)->base - 1)) - extern const TObject luaO_nilobject; -- cgit v1.2.3-55-g6feb