Difference between revisions of "LSL Errors"
Jump to navigation
Jump to search
DuraS Torok (talk | contribs) (It happened to me, further technical details are welcome) |
|||
Line 2: | Line 2: | ||
==Script run-time error== | ==Script run-time error== | ||
* '''Stack-Heap Collision''' This can occur if the running script is too big. The script compiles and saves successfully, but when an object containing it is instantiated the script crashes. | * '''Stack-Heap Collision''' - The Stack has collided with the Heap.<br/>The LSL memory space contains three sections Bytecode, Stack and Heap which all must be contained in 16kib of memory. | ||
** This can occur if the running script is too big. The script compiles and saves successfully, but when an object containing it is instantiated the script crashes. |
Revision as of 23:48, 23 May 2007
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Script run-time error
- Stack-Heap Collision - The Stack has collided with the Heap.
The LSL memory space contains three sections Bytecode, Stack and Heap which all must be contained in 16kib of memory.- This can occur if the running script is too big. The script compiles and saves successfully, but when an object containing it is instantiated the script crashes.