mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 11:09:27 +02:00
* fixed the stack traces under linux (StackTop wasn't initialized)
git-svn-id: trunk@25861 -
This commit is contained in:
parent
f23794bf39
commit
714ca3a61d
@ -351,8 +351,9 @@ begin
|
||||
{$endif}
|
||||
{$endif}
|
||||
IsConsole := TRUE;
|
||||
StackTop := initialstkptr;
|
||||
StackLength := CheckInitialStkLen(initialStkLen);
|
||||
StackBottom := initialstkptr - StackLength;
|
||||
StackBottom := StackTop - StackLength;
|
||||
{ Set up signals handlers (may be needed by init code to test cpu features) }
|
||||
InstallSignals;
|
||||
{$if defined(cpui386) or defined(cpuarm)}
|
||||
|
Loading…
Reference in New Issue
Block a user