From: Georgy Kirichenko <georgy@tarantool.org> To: tarantool-patches@freelists.org Cc: Georgy Kirichenko <georgy@tarantool.org> Subject: [tarantool-patches] [PATCH 1/3] Set a lua state for the main fiber too Date: Fri, 21 Sep 2018 16:20:53 +0300 [thread overview] Message-ID: <113a80904f6f6b4385170d47d6bce1ecb29a6317.1537535602.git.georgy@tarantool.org> (raw) In-Reply-To: <cover.1537535602.git.georgy@tarantool.org> The main fiber should have a lua state as any other lua fiber. --- src/lua/init.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lua/init.c b/src/lua/init.c index 8e148904a..07bcca1b9 100644 --- a/src/lua/init.c +++ b/src/lua/init.c @@ -628,6 +628,7 @@ tarantool_lua_run_script(char *path, bool interactive, script_fiber = fiber_new(title, run_script_f); if (script_fiber == NULL) panic("%s", diag_last_error(diag_get())->errmsg); + script_fiber->storage.lua.stack = tarantool_L; fiber_start(script_fiber, tarantool_L, path, interactive, optc, optv, argc, argv); -- 2.19.0
next prev parent reply other threads:[~2018-09-21 13:20 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-09-21 13:20 [tarantool-patches] [PATCH 0/3] Dump lua frames for a fiber traceback Georgy Kirichenko 2018-09-21 13:20 ` Georgy Kirichenko [this message] 2018-09-25 23:27 ` [tarantool-patches] Re: [PATCH 1/3] Set a lua state for the main fiber too Konstantin Osipov 2018-10-05 15:04 ` [tarantool-patches] " Vladimir Davydov 2018-09-21 13:20 ` [tarantool-patches] [PATCH 2/3] Proper unwind for currently executing fiber Georgy Kirichenko 2018-09-25 23:34 ` [tarantool-patches] " Konstantin Osipov 2018-09-26 6:57 ` Georgy Kirichenko 2018-09-26 17:36 ` Konstantin Osipov 2018-10-04 7:44 ` [tarantool-patches] " Georgy Kirichenko 2018-10-04 22:27 ` [tarantool-patches] " Konstantin Osipov 2018-10-05 15:09 ` [tarantool-patches] " Vladimir Davydov 2018-09-21 13:20 ` [tarantool-patches] [PATCH 3/3] Show names of Lua functions in backtraces Georgy Kirichenko 2018-09-25 23:38 ` [tarantool-patches] " Konstantin Osipov 2018-10-04 7:55 ` [tarantool-patches] " Georgy Kirichenko 2018-10-04 22:28 ` [tarantool-patches] " Konstantin Osipov 2018-10-05 17:49 ` [tarantool-patches] " Vladimir Davydov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=113a80904f6f6b4385170d47d6bce1ecb29a6317.1537535602.git.georgy@tarantool.org \ --to=georgy@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH 1/3] Set a lua state for the main fiber too' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox