aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-03-27 10:30:15 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2021-04-03 16:27:58 +0200
commit5ed383057b5272d3777d2179128f474cc31317ea (patch)
tree46d8f18a6a7369c30ba86be0e03616b2d56e4a81 /src/nvim/lua/executor.h
parentabdda664108646a8f1bd3112abb8083d721d38e6 (diff)
downloadrneovim-5ed383057b5272d3777d2179128f474cc31317ea.tar.gz
rneovim-5ed383057b5272d3777d2179128f474cc31317ea.tar.bz2
rneovim-5ed383057b5272d3777d2179128f474cc31317ea.zip
lua: track reference ownership with ASAN when present
Diffstat (limited to 'src/nvim/lua/executor.h')
-rw-r--r--src/nvim/lua/executor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/lua/executor.h b/src/nvim/lua/executor.h
index 1d7a15d9aa..ea774ac2e3 100644
--- a/src/nvim/lua/executor.h
+++ b/src/nvim/lua/executor.h
@@ -16,6 +16,8 @@ void nlua_add_api_functions(lua_State *lstate) REAL_FATTR_NONNULL_ALL;
EXTERN LuaRef nlua_nil_ref INIT(= LUA_NOREF);
EXTERN LuaRef nlua_empty_dict_ref INIT(= LUA_NOREF);
+EXTERN int nlua_refcount INIT(= 0);
+
#define set_api_error(s, err) \
do { \
Error *err_ = (err); \