llGetFreeMemory

From Second Life Wiki
Revision as of 17:24, 16 April 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Summary

Function: integer llGetFreeMemory( );

Returns an integer that is the historic available heap space for the current script.

Caveats

  • The function will NEVER return a higher number than any previous call to itself.
All Issues ~ Search JIRA for related Bugs

Examples

// To show usage of memory by a script, take the free memory from 16k
llOwnerSay("Script uses " + (string)((16384 - llGetFreeMemory())/1024) + " kBytes");

Notes

Because of the implementation of this function it's usefulness is limited. It has been stated that when the LSL VM is moved to Mono that this function will work properly.

Deep Notes

Search JIRA for related Issues

Signature

function integer llGetFreeMemory();