2020-05-22 00:01:43 +02:00
|
|
|
(*
|
2020-06-07 18:39:30 +02:00
|
|
|
KolibriOS RTL System unit
|
2020-05-22 00:01:43 +02:00
|
|
|
*)
|
|
|
|
|
|
|
|
unit System;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
type
|
|
|
|
PPAnsiChar = ^PAnsiChar;
|
|
|
|
PInteger = ^Integer;
|
|
|
|
|
2020-05-24 00:32:23 +02:00
|
|
|
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;
|
|
|
|
|
2020-06-07 18:39:30 +02:00
|
|
|
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
|
2020-06-07 18:39:30 +02:00
|
|
|
InitTable: PPackageInfo;
|
|
|
|
InitCount: Integer;
|
2020-05-22 00:01:43 +02:00
|
|
|
OuterContext: PInitContext;
|
|
|
|
end;
|
|
|
|
|
2020-06-07 20:55:00 +02:00
|
|
|
procedure _Halt0;
|
2020-05-22 00:01:43 +02:00
|
|
|
procedure _HandleFinally;
|
2020-06-07 18:39:30 +02:00
|
|
|
procedure _StartExe(InitTable: PPackageInfo);
|
2020-05-22 00:01:43 +02:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
SysInit;
|
|
|
|
|
2020-06-07 18:39:30 +02:00
|
|
|
var
|
|
|
|
InitContext: TInitContext;
|
2020-06-07 20:55:00 +02:00
|
|
|
|
2020-05-22 00:01:43 +02:00
|
|
|
procedure _HandleFinally;
|
|
|
|
asm
|
|
|
|
end;
|
|
|
|
|
2020-06-07 18:39:30 +02:00
|
|
|
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;
|
|
|
|
|
2020-05-24 00:32:23 +02:00
|
|
|
end.
|