func_system_gcsuspend.rst 574 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. _func_system_gcsuspend:
  2. =========
  3. GCSuspend
  4. =========
  5. GCSuspend -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. GCSuspend()
  10. Suspend garbage collector
  11. #GCSuspend temporarily suspends the garbage collector. No garbage
  12. collection will be performed following a call to #GCSuspend.<br>
  13. <br>
  14. Use #GCResume to resume the garbage collector. Note that #GCSuspend
  15. and #GCResume 'nest', meaning that each call to #GCSuspend must be
  16. matched by a call to #GCResume.
  17. Parameters
  18. ==========
  19. Return Values
  20. =============
  21. Nothing.
  22. Examples
  23. ========
  24. See Also
  25. ========