sysShow(
const mode, // what to show
[const depth]) // how much
Shows internal CSL information depending on the mode selected:
| Mode |
Description |
| sysShowFunctions |
Show all functions currently loaded by CSL |
| sysShowCallStack |
Show track of all functions currently open |
| sysShowFullStack |
As sysShowCallStack, additionally show all local
vars/consts of the functions.
|
| sysShowGlobals |
Show all public globals and all static globals of all
modules loaded.
|
| sysShowLibraries |
Show all libraries currently loaded |
Example:
sysShow(sysShowFunctions);
|