SDK/RTL/System.pas

115 lines
1.8 KiB
ObjectPascal
Raw Normal View History

2020-05-22 00:01:43 +02:00
(*
KolibriOS RTL System unit
2020-05-22 00:01:43 +02:00
*)
unit System;
interface
type
PPAnsiChar = ^PAnsiChar;
PInteger = ^Integer;
THandle = LongWord;
2020-05-22 00:01:43 +02:00
TGUID = record
D1: LongWord;
D2: Word;
D3: Word;
D4: array [0..7] of Byte;
end;
PProcedure = procedure;
TPackageUnitEntry = packed record
Init, Finalize: PProcedure;
end;
PUnitEntryTable = ^TUnitEntryTable;
TUnitEntryTable = array [0..99999999] of TPackageUnitEntry;
PPackageInfo = ^TPackageInfo;
TPackageInfo = packed record
UnitCount: Integer;
UnitInfo: PUnitEntryTable;
end;
2020-05-22 00:01:43 +02:00
PInitContext = ^TInitContext;
TInitContext = record
InitTable: PPackageInfo;
InitCount: Integer;
2020-05-22 00:01:43 +02:00
OuterContext: PInitContext;
end;
procedure _Halt0;
2020-05-22 00:01:43 +02:00
procedure _HandleFinally;
procedure _StartExe(InitTable: PPackageInfo);
2020-05-22 00:01:43 +02:00
implementation
uses
SysInit;
var
InitContext: TInitContext;
2020-05-22 00:01:43 +02:00
procedure _HandleFinally;
asm
end;
procedure InitUnits;
var
Idx: Integer;
begin
if InitContext.InitTable <> nil then
with InitContext.InitTable^ do
begin
Idx := 0;
while Idx < UnitCount do
begin
with UnitInfo[Idx] do
begin
if Assigned(Init) then
Init;
end;
Inc(Idx);
InitContext.InitCount := Idx;
end;
end;
end;
procedure FinalizeUnits;
begin
if InitContext.InitTable <> nil then
begin
with InitContext do
begin
while InitCount > 0 do
begin
Dec(InitCount);
with InitTable.UnitInfo[InitCount] do
if Assigned(Finalize) then
Finalize;
end;
end;
end;
end;
procedure _StartExe(InitTable: PPackageInfo);
begin
InitContext.InitTable := InitTable;
InitContext.InitCount := 0;
InitUnits;
end;
procedure _Halt0;
begin
FinalizeUnits;
asm
OR EAX, -1
INT $40
end;
end;
end.