func_system_gcsetmode.rst 511 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. _func_system_gcsetmode:
  2. =========
  3. GCSetMode
  4. =========
  5. GCSetMode -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. GCSetMode( mode )
  10. Set garbage collector mode
  11. @mode can be one of the following:<br>
  12. 1 : automatic GC - memory will be automatically garbage collected<br>
  13. 2 : manual GC - no memory will be collected until a call to GCCollect is made<br>
  14. <br>
  15. The default GC mode is automatic GC.
  16. Parameters
  17. ==========
  18. Return Values
  19. =============
  20. Nothing.
  21. Examples
  22. ========
  23. See Also
  24. ========