Next: ObjectMemory class-initialization, Previous: ObjectMemory class-accessing, Up: ObjectMemory [Index]
Quit the Smalltalk environment, dumping core.
Returns the address of the actual object that anObject references. Note that, with the exception of fixed objects this address is only valid until the next garbage collection; thus it’s pretty risky to count on the address returned by this method for very long.
Returns the address of the OOP (object table slot) for anObject. The address is an Integer and will not change over time (i.e. is immune from garbage collector action) except if the virtual machine is stopped and restarted.
Answer the smallest size for objects that are allocated outside the main heap in the hope of providing more locality of reference between small objects.
Set the smallest size for objects that are allocated outside the main heap in the hope of providing more locality of reference between small objects. bytes must be a positive SmallInteger.
Force a full garbage collection, including compaction of oldspace
Do a step in the incremental garbage collection.
Answer whether messages indicating that garbage collection is taking place are printed on stdout
Set whether messages indicating that garbage collection is taking place are printed on stdout
Force a full garbage collection
Answer the percentage of the amount of memory used by the system grows which has to be full for the system to allocate more memory
Set the percentage of the amount of memory used by the system grows which has to be full for the system to allocate more memory
Grow the amount of memory used by the system grows to numBytes.
Do a step in the incremental garbage collection.
Quit the Smalltalk environment. Whether files are closed and other similar cleanup occurs depends on the platform
Quit the Smalltalk environment, passing the exitStatus integer to the OS. Files are closed and other similar cleanups occur.
Force a minor garbage collection
Answer the factor (between 0 and 1) used to smooth the statistics provided by the virtual machine about memory handling. 0 disables updating the averages, 1 disables the smoothing (the statistics return the last value).
Set the factor (between 0 and 1) used to smooth the statistics provided by the virtual machine about memory handling. 0 disables updating the averages, 1 disables the smoothing (the statistics return the last value).
Answer the rate with which the amount of memory used by the system grows
Set the rate with which the amount of memory used by the system grows
Next: ObjectMemory class-initialization, Previous: ObjectMemory class-accessing, Up: ObjectMemory [Index]