Adds debug verb for pooling (#9966)

* Adds debug verb for pooling

I think pooling is a thing that has very few bugs due to the way I've simplified it to the extreme and thus this debug verb in an ideal world shouldn't be needed.

But we don't live in an ideal world as you can clearly see
http://www.byond.com/forum/?post=2080853

This lets you view all the stored variables for a pooled variable type (assuming it has already been pooled at least once)

* Improved about 300%

* Fuck I'm so high
This commit is contained in:
clusterfack
2016-05-08 17:10:49 -05:00
parent a8fd4a803f
commit 80c1871b74
2 changed files with 21 additions and 1 deletions

View File

@@ -151,6 +151,7 @@ var/list/admin_verbs_server = list(
)
var/list/admin_verbs_debug = list(
/client/proc/gc_dump_hdl,
/client/proc/debug_pooling,
/client/proc/getSchedulerContext,
/client/proc/cmd_admin_list_open_jobs,
/proc/getbrokeninhands,
@@ -280,7 +281,8 @@ var/list/admin_verbs_hideable = list(
/client/proc/mob_list,
/proc/possess,
/proc/release,
/client/proc/gc_dump_hdl
/client/proc/gc_dump_hdl,
/client/proc/debug_pooling
)
var/list/admin_verbs_mod = list(
/client/proc/cmd_admin_pm_context, /*right-click adminPM interface*/