fpc/tests/webtbs/tw15619.pp
Jonas Maebe 13e8b3f23e * don't give a "NoThreadError" for any default rtl/basicevent* routines,
so the TMultiReadExclusiveWriteSynchronizer routines can be safely
    executed even with the default thread manager -> removed ismultithread
    checks, so that it keeps working even if ismultithread is set to true
    between acquiring and freeing a lock (mantis #15619)

git-svn-id: trunk@14830 -
2010-01-29 21:01:11 +00:00

18 lines
266 B
ObjectPascal

uses
{$ifdef unix}
cthreads,
{$endif}
sysutils;
var
F: TMultiReadExclusiveWriteSynchronizer;
begin
F:=TMultiReadExclusiveWriteSynchronizer.Create;
F.Beginwrite;
IsMultiThread:=true; //Culprit.
F.Endwrite;
F.Beginwrite;
F.Endwrite;
F.Free;
end.