/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/lua/disown_runme.lua
15 строк
355 B
Erez Geva
Remove Lua 5.0 and Lua 5.1 and Lua options
30 май 2026, 19:24
30 май 2026, 19:24
74ff929
Код
Авторство
О чём код?
require("disown") catch_undef_globs() -- catch "undefined" global variables for x=0,100 do a=disown.A() b=disown.B() b:acquire(a) end collectgarbage() -- this will double delete unless the memory is managed properly a=disown.A() a:__disown() b:remove(a) a=nil collectgarbage() -- this will double delete unless the manual disown call worked