Working on new type system, planning out debugmanager

This commit is contained in:
2023-09-04 12:03:00 -04:00
parent a660b63581
commit 5f5723e936
11 changed files with 98 additions and 87 deletions
+5 -3
View File
@@ -1,5 +1,7 @@
local multi, thread = require("multi"):init()
multi.defaultSettings.debugging = true
local dbg = {}
local creation_hook
@@ -11,6 +13,8 @@ creation_hook = function(obj, process)
end
end
local debug_stats = {}
local tmulti = multi:getThreadManagerProcess()
multi.OnObjectCreated(creation_hook)
tmulti.OnObjectCreated(creation_hook)
@@ -32,6 +36,4 @@ tmulti.OnObjectCreated(creation_hook)
multi.SERVICE = "service"
multi.PROXY = "proxy"
multi.THREADEDFUNCTION = "threaded_function"
]]
return dbg
]]