1{
2    This file is part of the Free Pascal run time library.
3    Copyright (c) 2013 by Free Pascal development team
4
5    This file implements all the base types and limits required
6    for a minimal POSIX compliant subset required to port the compiler
7    to a new OS.
8
9    See the file COPYING.FPC, included in this distribution,
10    for details about the copyright.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15
16 **********************************************************************}
17
18{Platform specific information}
19type
20  THandle = Word;
21  TThreadID = THandle;
22
23   PRTLCriticalSection = ^TRTLCriticalSection;
24   TRTLCriticalSection = record
25     Locked: boolean
26   end;
27