code/__DEFINES/qdel_defines.dm
GC_QUEUE_FILTER | short queue to filter out quick gc successes so they don't hang around in the main queue for 5 minutes |
---|---|
GC_QUEUE_CHECK | main queue that waits 5 minutes because thats the longest byond can hold a reference to our shit. |
GC_QUEUE_HARDDELETE | short queue for things that hard delete instead of going thru the gc subsystem, this is purely so if they can softdelete, they will soft delete rather then wasting time with a hard delete. |
GC_QUEUE_COUNT | Number of queues, used for allocating the nested lists. Don't forget to increase this if you add a new queue stage |
GC_QUEUE_ITEM_QUEUE_TIME | Time this item entered the queue |
GC_QUEUE_ITEM_REF | Ref to the item |
GC_QUEUE_ITEM_GCD_DESTROYED | Item's gc_destroyed var value. Used to detect ref reuse. |
GC_QUEUE_ITEM_INDEX_COUNT | Number of item indexes, used for allocating the nested lists. Don't forget to increase this if you add a new queue item index |
Define Details
GC_QUEUE_CHECK
main queue that waits 5 minutes because thats the longest byond can hold a reference to our shit.
GC_QUEUE_COUNT
Number of queues, used for allocating the nested lists. Don't forget to increase this if you add a new queue stage
GC_QUEUE_FILTER
short queue to filter out quick gc successes so they don't hang around in the main queue for 5 minutes
GC_QUEUE_HARDDELETE
short queue for things that hard delete instead of going thru the gc subsystem, this is purely so if they can softdelete, they will soft delete rather then wasting time with a hard delete.
GC_QUEUE_ITEM_GCD_DESTROYED
Item's gc_destroyed var value. Used to detect ref reuse.
GC_QUEUE_ITEM_INDEX_COUNT
Number of item indexes, used for allocating the nested lists. Don't forget to increase this if you add a new queue item index
GC_QUEUE_ITEM_QUEUE_TIME
Time this item entered the queue
GC_QUEUE_ITEM_REF
Ref to the item