forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Recycle
angerangel edited this page Mar 19, 2013
·
1 revision
RECYCLE /off /on /ballast size /torture
Recycles unused memory.
RECYCLE is a native value.
- /off -- Disable auto-recycling
- /on -- Enable auto-recycling
-
/ballast -- Trigger for auto-recycle (memory used)
- size (integer!)
- /torture -- Constant recycle (for internal debugging)
#SOURCE
recycle: make native! [ [
"Recycles unused memory."
/off "Disable auto-recycling"
/on "Enable auto-recycling"
/ballast "Trigger for auto-recycle (memory used)"
size [integer!]
/torture "Constant recycle (for internal debugging)"
] ]