* enable initialization of exceptions and threading on FreeRTOS

git-svn-id: trunk@46743 -
This commit is contained in:
florian 2020-09-01 20:32:45 +00:00
parent 2dcb31efce
commit 1cbdc9cc9a

View File

@ -295,8 +295,8 @@ begin
programs this does not matter because in the main thread, the variables are located programs this does not matter because in the main thread, the variables are located
in bss in bss
SysInitExceptions;
} }
SysInitExceptions;
{$endif FPC_HAS_FEATURE_EXCEPTIONS} {$endif FPC_HAS_FEATURE_EXCEPTIONS}
{$ifdef FPC_HAS_FEATURE_CONSOLEIO} {$ifdef FPC_HAS_FEATURE_CONSOLEIO}
@ -306,10 +306,10 @@ begin
{ $ifdef FPC_HAS_FEATURE_THREADING} { $ifdef FPC_HAS_FEATURE_THREADING}
{ threading } { threading }
//InitSystemThreads; // Empty call for embedded anyway InitSystemThreads;
{ $endif FPC_HAS_FEATURE_THREADING} { $endif FPC_HAS_FEATURE_THREADING}
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS} {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
// initunicodestringmanager; initunicodestringmanager;
{$endif FPC_HAS_FEATURE_WIDESTRINGS} {$endif FPC_HAS_FEATURE_WIDESTRINGS}
end. end.