3

func コルーチンを 2 回再開し、 n==0 の場合は yield し、 n==1 の場合は return したいだけですが、コアダンプが発生します。何が問題なのですか?

「hello world」は常に LL のスタックに残す必要があります。何が問題なのかわかりません。

[liangdong@cq01-clientbe-code00.vm.baidu.com lua]$ ./main 
func_top=1 top=hello world
first_top=1 top_string=hello world
Segmentation fault (core dumped)
[liangdong@cq01-clientbe-code00.vm.baidu.com lua]$ cat main.c 
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"

int n = 0;

int func(lua_State *L) {
    printf("func_top=%d top=%s\n", lua_gettop(L), lua_tostring(L, -1));
    if (!n) {
        ++ n;
        return lua_yield(L, 1);
    } else {
        return 1;
    }
}

int main(int argc, char* const argv[]) {
    lua_State *L = luaL_newstate();

    /* init lua library */    
    lua_pushcfunction(L, luaopen_base);
    if (lua_pcall(L, 0, 0, 0) != 0) {
        return 1;
    }
    lua_pushcfunction(L, luaopen_package);
    if (lua_pcall(L, 0, 0, 0 ) != 0) {
        return 2;
    }

    /* create the coroutine */
    lua_State *LL = lua_newthread(L);

    lua_pushcfunction(LL, func);
    lua_pushstring(LL, "hello world");

    /* first time resume */
    if (lua_resume(LL, 1) == LUA_YIELD) {
        printf("first_top=%d top_string=%s\n", lua_gettop(LL), lua_tostring(LL, -1));
        /* twice resume */
        if (lua_resume(LL, 1) == 0) {
            printf("second_top=%d top_string=%s\n", lua_gettop(LL), lua_tostring(LL, -1));
        }
    }

    lua_close(L);

    return 0;
}

lua5.1 ではコアダンプしますが、lua_resume(LL, 1) を lua_resume(LL, NULL, 1) に変更すると、lua5.2 でうまく動作します。

4

1 に答える 1

1

編集:私は実際には完全に間違っていました。

C 関数を再開することはできません。

于 2013-01-15T03:43:05.257 に答える