Difference between revisions of "LlGetSPMaxMemory"

From Second Life Wiki
Jump to navigation Jump to search
m (added date of release)
Line 34: Line 34:
|cat3=Script Profiler
|cat3=Script Profiler
|cat4
|cat4
|history = Date of Release  [[ Release_Notes/Second_Life_Server/11#11.06.17.233176 | 17/06/2011 ]]
}}
}}

Revision as of 12:28, 25 June 2013

Summary

Function: integer llGetSPMaxMemory( );

Returns the integer of the most bytes used while LlScriptProfiler was last active.

Specification

This function's behavior is dependent upon the VM the script is using. Mono is the new VM, LSO is the old VM. The big difference between between Mono and LSO is that Mono scripts run faster and can utilize four times more memory.

Mono

During and after a LlScriptProfiler profiling run, llGetSPMaxMemory will return the most memory used during profiling.

LSO

This function has no effect for scripts not compiled to Mono. It will always return 16384, the fixed LSO memory size.

Examples

See Also

Deep Notes

History

Date of Release 17/06/2011

Search JIRA for related Issues

Signature

function integer llGetSPMaxMemory();