mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 01:49:20 +02:00
* use FPC_THREADING define for removing thread dependent code
This commit is contained in:
parent
94b4f206e0
commit
956ec2874f
@ -193,7 +193,9 @@ type
|
|||||||
TThreadList = class
|
TThreadList = class
|
||||||
private
|
private
|
||||||
FList: TList;
|
FList: TList;
|
||||||
|
{$ifdef FPC_THREADING}
|
||||||
FLock: TRTLCriticalSection;
|
FLock: TRTLCriticalSection;
|
||||||
|
{$endif FPC_THREADING}
|
||||||
public
|
public
|
||||||
constructor Create;
|
constructor Create;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
@ -1448,7 +1450,10 @@ function LineStart(Buffer, BufPos: PChar): PChar;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.22 2002-09-07 15:15:24 peter
|
Revision 1.23 2002-10-14 19:46:50 peter
|
||||||
|
* use FPC_THREADING define for removing thread dependent code
|
||||||
|
|
||||||
|
Revision 1.22 2002/09/07 15:15:24 peter
|
||||||
* old logs removed and tabs fixed
|
* old logs removed and tabs fixed
|
||||||
|
|
||||||
Revision 1.21 2002/07/16 13:32:51 florian
|
Revision 1.21 2002/07/16 13:32:51 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user