-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauxresume.c
66 lines (60 loc) · 1.57 KB
/
auxresume.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <time.h>
#include <setjmp.h>
#include <ctype.h>
#include "lapi.h"
#include "lauxlib.h"
#include "lcode.h"
#include "lctype.h"
#include "ldebug.h"
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "llex.h"
#include "llimits.h"
#include "lmem.h"
#include "lobject.h"
#include "lopcodes.h"
#include "lopnames.h"
#include "lparser.h"
#include "lprefix.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "luaconf.h"
#include "lua.h"
#include "lualib.h"
#include "lundump.h"
#include "lvm.h"
#include "lzio.h"
extern void lua_xmove(lua_State *, lua_State *, int);
extern void lua_xmove(lua_State *, lua_State *, int);
extern const char * lua_pushstring(lua_State *, const char *);
extern void lua_settop(lua_State *, int);
extern int lua_checkstack(lua_State *, int);
extern int lua_resume(lua_State *, lua_State *, int, int *);
extern void lua_xmove(lua_State *, lua_State *, int);
extern const char * lua_pushstring(lua_State *, const char *);
extern int lua_checkstack(lua_State *, int);
extern int auxresume (lua_State *L, lua_State *co, int narg) {
int status, nres;
if (!lua_checkstack(co, narg)) {
lua_pushstring(L, "" "too many arguments to resume");
return -1;
}
lua_xmove(L, co, narg);
status = lua_resume(co, L, narg, &nres);
if (status == 0 || status == 1) {
if (!lua_checkstack(L, nres + 1)) {
lua_settop(co, -(nres)-1);
lua_pushstring(L, "" "too many results to resume");
return -1;
}
lua_xmove(co, L, nres);
return nres;
}
else {
lua_xmove(co, L, 1);
return -1;
}
}