mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:47:54 +02:00
+ introduce TOSTimestamp
git-svn-id: trunk@44033 -
This commit is contained in:
parent
17c4834a4a
commit
3cd4168ab3
@ -18,6 +18,7 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = Cardinal;
|
||||
TOSTimestamp = Int64;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -19,6 +19,7 @@
|
||||
type
|
||||
THandle = PtrInt;
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -23,7 +23,8 @@ type
|
||||
THandle = Longint;
|
||||
{$endif CPU64}
|
||||
TThreadID = THandle;
|
||||
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
Locked: boolean
|
||||
|
@ -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
|
||||
|
@ -21,7 +21,8 @@ type
|
||||
THandle = Longint;
|
||||
TThreadRec = record end;
|
||||
TThreadID = ^TThreadRec;
|
||||
|
||||
TOSTimestamp = Int64;
|
||||
|
||||
{ pthread_mutex_t }
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = {$i pmutext.inc}
|
||||
|
@ -25,6 +25,7 @@ type
|
||||
{$else}
|
||||
TThreadID = THandle;
|
||||
{$endif}
|
||||
TOSTimestamp = Int64;
|
||||
|
||||
{ pthread_mutex_t }
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
|
@ -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 }
|
||||
|
@ -19,7 +19,8 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
Locked: boolean
|
||||
|
@ -19,6 +19,7 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -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
|
||||
|
@ -16,6 +16,8 @@
|
||||
}
|
||||
|
||||
type
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
FpcRunTimeError = class(JLException)
|
||||
errornr: longint;
|
||||
constructor create(l: longint);
|
||||
|
@ -23,6 +23,8 @@ type
|
||||
{ pthread_t is defined as an "unsigned long" }
|
||||
TThreadID = PtrUInt;
|
||||
|
||||
TOSTimestamp = Int64;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
{$macro on}
|
||||
{$define MUTEXTYPENAME := TRTLCriticalSection}
|
||||
|
@ -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;
|
||||
|
||||
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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 }
|
||||
|
@ -19,7 +19,8 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
Locked: boolean
|
||||
|
@ -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 }
|
||||
|
@ -18,7 +18,8 @@
|
||||
type
|
||||
THandle = DWord;
|
||||
TThreadID = THandle;
|
||||
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = packed record
|
||||
mutex : pointer;
|
||||
|
@ -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 }
|
||||
|
@ -21,6 +21,7 @@ type
|
||||
THandle = Longint;
|
||||
{$endif CPU64}
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -18,6 +18,7 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = Cardinal;
|
||||
TOSTimestamp = Int64;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -19,6 +19,7 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
{ pthread_mutex_t }
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
|
@ -19,6 +19,7 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
@ -19,7 +19,8 @@
|
||||
type
|
||||
THandle = Longint;
|
||||
TThreadID = THandle;
|
||||
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
Locked: boolean
|
||||
|
@ -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 }
|
||||
|
@ -19,6 +19,7 @@
|
||||
type
|
||||
THandle = Word;
|
||||
TThreadID = THandle;
|
||||
TOSTimestamp = Longint;
|
||||
|
||||
PRTLCriticalSection = ^TRTLCriticalSection;
|
||||
TRTLCriticalSection = record
|
||||
|
Loading…
Reference in New Issue
Block a user