+ introduce TOSTimestamp

git-svn-id: trunk@44033 -
This commit is contained in:
florian 2020-01-25 14:14:41 +00:00
parent 17c4834a4a
commit 3cd4168ab3
26 changed files with 47 additions and 19 deletions

View File

@ -18,6 +18,7 @@
type
THandle = Longint;
TThreadID = Cardinal;
TOSTimestamp = Int64;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -19,6 +19,7 @@
type
THandle = PtrInt;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -23,7 +23,8 @@ type
THandle = Longint;
{$endif CPU64}
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean

View File

@ -20,7 +20,8 @@ type
{ fd are int in C also for 64bit targets (x86_64) }
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Int64;
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -21,7 +21,8 @@ type
THandle = Longint;
TThreadRec = record end;
TThreadID = ^TThreadRec;
TOSTimestamp = Int64;
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = {$i pmutext.inc}

View File

@ -25,6 +25,7 @@ type
{$else}
TThreadID = THandle;
{$endif}
TOSTimestamp = Int64;
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;

View File

@ -18,9 +18,9 @@
{Platform specific information}
type
THandle = Longint;
TThreadID = cardinal;
TOSTimestamp = Longint;
{ the fields of this record are os dependent }
{ and they shouldn't be used in a program }
{ only the type TCriticalSection is important }

View File

@ -19,7 +19,8 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean

View File

@ -19,6 +19,7 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -20,7 +20,8 @@ type
{ fd are int in C also for 64bit targets (x86_64) }
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Int64;
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -16,6 +16,8 @@
}
type
TOSTimestamp = Longint;
FpcRunTimeError = class(JLException)
errornr: longint;
constructor create(l: longint);

View File

@ -23,6 +23,8 @@ type
{ pthread_t is defined as an "unsigned long" }
TThreadID = PtrUInt;
TOSTimestamp = Int64;
PRTLCriticalSection = ^TRTLCriticalSection;
{$macro on}
{$define MUTEXTYPENAME := TRTLCriticalSection}

View File

@ -21,11 +21,12 @@ type
THandle = Longint;
{$endif CPU64}
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean
end;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean
end;

View File

@ -19,8 +19,10 @@
type
THandle = Word;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean
end;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean
end;

View File

@ -17,6 +17,7 @@
type
THandle = PtrUInt;
TThreadID = THandle;
TOSTimestamp = Longint;
{ the fields of this record are os dependent }
{ and they shouldn't be used in a program }

View File

@ -19,7 +19,8 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean

View File

@ -19,6 +19,7 @@
type
THandle = DWord;
TThreadID = THandle;
TOSTimestamp = Longint;
{ the fields of this record are os dependent }
{ and they shouldn't be used in a program }

View File

@ -18,7 +18,8 @@
type
THandle = DWord;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = packed record
mutex : pointer;

View File

@ -19,7 +19,8 @@
type
THandle = Longint;
TThreadID = cardinal;
TOSTimestamp = Longint;
{ the fields of this record are os dependent }
{ and they shouldn't be used in a program }
{ only the type TCriticalSection is important }

View File

@ -21,6 +21,7 @@ type
THandle = Longint;
{$endif CPU64}
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -18,6 +18,7 @@
type
THandle = Longint;
TThreadID = Cardinal;
TOSTimestamp = Int64;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -19,6 +19,7 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;

View File

@ -19,6 +19,7 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record

View File

@ -19,7 +19,8 @@
type
THandle = Longint;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean

View File

@ -24,6 +24,7 @@ type
{$endif CPU64}
TThreadID = DWord;
SIZE_T = ULONG_PTR;
TOSTimestamp = Int64;
{ the fields of this record are os dependent }
{ and they shouldn't be used in a program }

View File

@ -19,6 +19,7 @@
type
THandle = Word;
TThreadID = THandle;
TOSTimestamp = Longint;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record