13.07.2015, 06:48
(
Последний раз редактировалось gurmani11; 17.10.2015 в 16:49.
)
Delete
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase Header size: 20280 bytes Code size: 1343676 bytes Data size: 18741396 bytes Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion Total requirements:20121736 bytes
This is what you should worry about:
Код:
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase Header size: 20280 bytes Code size: 1343676 bytes Data size: 18741396 bytes Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion Total requirements:20121736 bytes |
You are so wrong mate. Its a recursion. Which means you called a function somewhere within itself. This is nothing to worry about.
|
You are so wrong mate. Its a recursion. Which means you called a function somewhere within itself. This is nothing to worry about.
|
Originally Posted by banana_ghost
If you're using more memory than allocated in your stack, your server could possibly crash as well as overwrite runtime data.
That same warning could also come from calling a function from within the same function. The compiler doesn't know how much memory to allocate for it. |