mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 08:48:03 +02:00
21 lines
370 B
ObjectPascal
21 lines
370 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw40634b;
|
|
{$mode ObjFPC}{$H+}
|
|
uses uw40634c;
|
|
type
|
|
TFpThreadWorkerItem = class
|
|
end;
|
|
|
|
TFpThreadWorkerQueue = class(specialize TLazThreadedQueue<TFpThreadWorkerItem>)
|
|
protected type
|
|
TFpDbgTypedFifoQueue = class(TLazTypedFifoQueue)
|
|
//function PushItem(const AItem: TFpThreadWorkerItem): Boolean; override;
|
|
end;
|
|
end;
|
|
|
|
|
|
begin
|
|
end.
|
|
|