mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 07:09:23 +02:00
* make exception variables threadvars or not depending on threading support
git-svn-id: trunk@23262 -
This commit is contained in:
parent
ebd2e79270
commit
92565c80ba
@ -36,7 +36,11 @@ Type
|
|||||||
Const
|
Const
|
||||||
CatchAllExceptions = PtrInt(-1);
|
CatchAllExceptions = PtrInt(-1);
|
||||||
|
|
||||||
|
{$ifdef FPC_HAS_FEATURE_THREADING}
|
||||||
ThreadVar
|
ThreadVar
|
||||||
|
{$else FPC_HAS_FEATURE_THREADING}
|
||||||
|
Var
|
||||||
|
{$endif FPC_HAS_FEATURE_THREADING}
|
||||||
ExceptAddrStack : PExceptAddr;
|
ExceptAddrStack : PExceptAddr;
|
||||||
ExceptObjectStack : PExceptObject;
|
ExceptObjectStack : PExceptObject;
|
||||||
ExceptTryLevel : longint;
|
ExceptTryLevel : longint;
|
||||||
|
Loading…
Reference in New Issue
Block a user