1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2002-2011 by Tomas Hajny,
member of the Free Pascal development team.
OS/2 threading support implementation
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{*****************************************************************************
Local Api imports
*****************************************************************************}
const
pag_Read = 1;
pag_Write = 2;
pag_Execute = 4;
pag_Guard = 8;
pag_Commit = $10;
obj_Tile = $40;
sem_Indefinite_Wait = cardinal (-1);
dtSuspended = 1;
dtStack_Commited = 2;
deThread = 0; {DosExit - exit thread only}
dcWW_Wait = 0;
dcWW_NoWait = 1;
dpThread = 2;
dpSameClass = 0;
dce_AutoReset = $1000;
qs_End = 0;
qs_Process = 1;
qs_Thread = 256;
type
PQSTRec = ^TQSTRec;
TQSTRec = record
RecType: cardinal; { Record type }
TID: word; { Thread ID }
Slot: word; { "Unique" thread slot number }
SleepID: cardinal; { Sleep ID thread is sleeping on }
case boolean of
false: (
Priority: cardinal; { Thread priority (class + level) }
SysTime: cardinal; { Thread system time }
UserTime: cardinal; { Thread user time }
State: byte; { Thread state }
Pad: array [1..3] of byte); { Padding for 32-bit alignment }
true: (
PrioLevel: byte; { Thread priority level only }
PrioClass: byte; { Thread priority class only }
Pad2: array [1..14] of byte);
end;
PQSPRec = ^TQSPRec;
TQSPrec = record
RecType: cardinal; { Type of record being processed }
PThrdRec: PQSTRec; { (Far?) pointer to thread records for this process }
PID: word; { Process ID }
PPID: word; { Parent process ID }
ProcType: cardinal; { Process type }
Stat: cardinal; { Process status }
SGID: cardinal; { Process screen group }
hMte: word; { Program module handle for process }
cTCB: word; { Number of TCBs (Thread Control Blocks) in use }
c32PSem: cardinal; { Number of private 32-bit semaphores in use }
p32SemRec: pointer; { (Far?) pointer to head of 32-bit semaphores info }
c16Sem: word; { Number of 16 bit system semaphores in use }
cLib: word; { Number of runtime linked libraries }
cShrMem: word; { Number of shared memory handles }
cFH: word; { Number of open files }
{ NOTE: cFH is size of active part of }
{ the handle table if QS_FILE specified }
p16SemRec: word; { Far pointer? to head of 16-bit semaphores info }
pLibRec: word; { Far pointer? to list of runtime libraries }
pShrMemRec: word; { Far pointer? to list of shared memory handles }
pFSRec: word; { Far pointer to list of file handles; }
{ 0xFFFF means it's closed, otherwise }
{ it's an SFN if non-zero }
end;
(* Simplified version here to avoid need for all record types copied here. *)
PQSPtrRec = ^TQSPtrRec;
TQSPtrRec = record
PGlobalRec: pointer;
PProcRec: PQSPRec; { Pointer to head of process records }
P16SemRec: pointer;
P32SemRec: pointer;
PMemRec: pointer;
PLibRec: pointer;
PShrMemRec: pointer;
PFSRec: pointer;
end;
{ import the necessary stuff from the OS }
function DosAllocThreadLocalMemory (Count: cardinal; var P: pointer): cardinal;
cdecl; external 'DOSCALLS' index 454;
function DosFreeThreadLocalMemory (P: pointer): cardinal; cdecl;
external 'DOSCALLS' index 455;
function DosCreateThread (var TID: cardinal; Address: pointer;
(* TThreadFunc *)
aParam: pointer; Flags: cardinal; StackSize: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 311;
function DosCreateMutExSem (Name: PChar; var Handle: THandle; Attr: cardinal;
State: cardinal): cardinal; cdecl; external 'DOSCALLS' index 331;
function DosCloseMutExSem (Handle: THandle): cardinal; cdecl;
external 'DOSCALLS' index 333;
function DosRequestMutExSem (Handle: THandle; Timeout: cardinal): cardinal;
cdecl; external 'DOSCALLS' index 334;
function DosReleaseMutExSem (Handle: THandle): cardinal; cdecl;
external 'DOSCALLS' index 335;
function DosSuspendThread (TID:cardinal): cardinal; cdecl;
external 'DOSCALLS' index 238;
function DosResumeThread (TID: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 237;
function DosKillThread (TID: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 111;
function DosWaitThread (var TID: cardinal; Option: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 349;
procedure DosSleep (MSec: cardinal); cdecl; external 'DOSCALLS' index 229;
{
procedure DosExit (Action, Result: cardinal); cdecl;
external 'DOSCALLS' index 234;
Already declared in the main part of system.pas...
}
function DosSetPriority (Scope, TrClass: cardinal; Delta: longint;
PortID: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 236;
function DosCreateEventSem (Name: PChar; var Handle: THandle;
Attr: cardinal; State: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 324;
function DosCloseEventSem (Handle: THandle): cardinal; cdecl;
external 'DOSCALLS' index 326;
function DosResetEventSem (Handle: THandle; var PostCount: cardinal): cardinal;
cdecl; external 'DOSCALLS' index 327;
function DosPostEventSem (Handle: THandle): cardinal; cdecl;
external 'DOSCALLS' index 328;
function DosWaitEventSem (Handle: THandle; Timeout: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 329;
function DosQueryEventSem (Handle: THandle; var Posted: cardinal): cardinal;
cdecl; external 'DOSCALLS' index 330;
function DosQuerySysState (EntityList, EntityLevel, PID, TID: cardinal;
var Buffer; BufLen: cardinal): cardinal; cdecl;
external 'DOSCALLS' index 368;
function DosQuerySysInfo (First, Last: cardinal; var Buf; BufSize: cardinal):
cardinal; cdecl;
external 'DOSCALLS' index 348;
{*****************************************************************************
Threadvar support
*****************************************************************************}
const
ThreadVarBlockSize: dword = 0;
const
(* Pointer to an allocated dword space within the local thread *)
(* memory area. Pointer to the real memory block allocated for *)
(* thread vars in this block is then stored in this dword. *)
DataIndex: PPointer = nil;
procedure SysInitThreadvar (var Offset: dword; Size: dword);
begin
Offset := ThreadVarBlockSize;
Inc (ThreadVarBlockSize, Size);
end;
procedure SysAllocateThreadVars;
begin
{ we've to allocate the memory from the OS }
{ because the FPC heap management uses }
{ exceptions which use threadvars but }
{ these aren't allocated yet ... }
{ allocate room on the heap for the thread vars }
if DosAllocMem (DataIndex^, ThreadVarBlockSize, pag_Read or pag_Write
or pag_Commit) <> 0 then
HandleError (8);
{ The Windows API apparently provides a way to fill the allocated memory with }
{ zeros; we probably need to do it ourselves for compatibility. }
FillChar (DataIndex^^, 0, ThreadVarBlockSize);
end;
function SysRelocateThreadVar (Offset: dword): pointer;
begin
{ DataIndex itself not checked for not being nil - expected that this should }
{ not be necessary because the equivalent check (i.e. TlsKey not being set) }
{ is note performed by the Windows implementation. }
if DataIndex^ = nil then
begin
SysAllocateThreadVars;
InitThread ($1000000);
end;
SysRelocateThreadVar := DataIndex^ + Offset;
end;
procedure SysInitMultithreading;
begin
{ do not check IsMultiThread, as program could have altered it, out of Delphi habit }
{ the thread attach/detach code uses locks to avoid multiple calls of this }
if DataIndex = nil then
begin
{ We're still running in single thread mode, setup the TLS }
if DosAllocThreadLocalMemory (1, DataIndex) <> 0 then RunError (8);
InitThreadVars (@SysRelocateThreadvar);
IsMultiThread := true;
end;
end;
procedure SysFiniMultithreading;
begin
if IsMultiThread then
begin
if DosFreeThreadLocalMemory (DataIndex) <> 0 then
begin
{??? What to do if releasing fails?}
end;
DataIndex := nil;
end;
end;
procedure SysReleaseThreadVars;
begin
DosFreeMem (DataIndex^);
DataIndex^ := nil;
end;
(* procedure InitThreadVars;
begin
{ allocate one ThreadVar entry from the OS, we use this entry }
{ for a pointer to our threadvars }
if DosAllocThreadLocalMemory (1, DataIndex) <> 0 then HandleError (8);
{ initialize threadvars }
init_all_unit_threadvars;
{ allocate mem for main thread threadvars }
SysAllocateThreadVars;
{ copy main thread threadvars }
copy_all_unit_threadvars;
{ install threadvar handler }
fpc_threadvar_relocate_proc := @SysRelocateThreadvar;
end;
*)
{*****************************************************************************
Thread starting
*****************************************************************************}
type
pthreadinfo = ^tthreadinfo;
tthreadinfo = record
f : tthreadfunc;
p : pointer;
stklen : cardinal;
end;
(* procedure InitThread(stklen:cardinal);
begin
SysResetFPU;
SysInitFPU;
{ ExceptAddrStack and ExceptObjectStack are threadvars }
{ so every thread has its on exception handling capabilities }
SysInitExceptions;
{ Open all stdio fds again }
SysInitStdio;
InOutRes:=0;
// ErrNo:=0;
{ Stack checking }
StackLength:=stklen;
StackBottom:=Sptr - StackLength;
end;
*)
function ThreadMain(param : pointer) : pointer;cdecl;
var
ti : tthreadinfo;
begin
{ Allocate local thread vars, this must be the first thing,
because the exception management and io depends on threadvars }
SysAllocateThreadVars;
{ Copy parameter to local data }
{$ifdef DEBUG_MT}
writeln('New thread started, initialising ...');
{$endif DEBUG_MT}
ti:=pthreadinfo(param)^;
dispose(pthreadinfo(param));
{ Initialize thread }
InitThread(ti.stklen);
{ Start thread function }
{$ifdef DEBUG_MT}
writeln('Jumping to thread function');
{$endif DEBUG_MT}
ThreadMain:=pointer(ti.f(ti.p));
end;
function SysBeginThread (SA: pointer; StackSize : PtrUInt;
ThreadFunction: TThreadFunc; P: pointer;
CreationFlags: cardinal; var ThreadId: TThreadID): DWord;
var
TI: PThreadInfo;
begin
{ WriteLn is not a good idea before thread initialization...
$ifdef DEBUG_MT
WriteLn ('Creating new thread');
$endif DEBUG_MT}
{ Initialize multithreading if not done }
SysInitMultithreading;
{ the only way to pass data to the newly created thread
in a MT safe way, is to use the heap }
New (TI);
TI^.F := ThreadFunction;
TI^.P := P;
TI^.StkLen := StackSize;
ThreadID := 0;
{$ifdef DEBUG_MT}
WriteLn ('Starting new thread');
{$endif DEBUG_MT}
if DosCreateThread (cardinal (ThreadID), @ThreadMain, TI,
CreationFlags, StackSize) = 0 then
SysBeginThread := ThreadID
else
begin
SysBeginThread := 0;
{$IFDEF DEBUG_MT}
WriteLn ('Thread creation failed');
{$ENDIF DEBUG_MT}
Dispose (TI);
end;
end;
procedure SysEndThread (ExitCode: cardinal);
begin
DoneThread;
DosExit (0, ExitCode);
end;
procedure SysThreadSwitch;
begin
DosSleep (0);
end;
function SysSuspendThread (ThreadHandle: dword): dword;
begin
{$WARNING Check expected return value}
SysSuspendThread := DosSuspendThread (ThreadHandle);
end;
function SysResumeThread (ThreadHandle: dword): dword;
begin
{$WARNING Check expected return value}
SysResumeThread := DosResumeThread (ThreadHandle);
end;
function SysKillThread (ThreadHandle: dword): dword;
begin
SysKillThread := DosKillThread (ThreadHandle);
end;
function SysCloseThread (ThreadHandle: TThreadID): dword;
begin
{ Probably not relevant under OS/2? }
// SysCloseThread:=CloseHandle(threadHandle);
end;
function SysWaitForThreadTerminate (ThreadHandle: dword;
TimeoutMs: longint): dword;
var
RC: cardinal;
const
{ Wait at most 100 ms before next check for thread termination }
WaitTime = 100;
begin
if TimeoutMs = 0 then
RC := DosWaitThread (ThreadHandle, dcWW_Wait)
else
repeat
RC := DosWaitThread (ThreadHandle, dcWW_NoWait);
if RC = 294 then
begin
if TimeoutMs > WaitTime then
DosSleep (WaitTime)
else
begin
DosSleep (TimeoutMs);
DosWaitThread (ThreadHandle, dcWW_NoWait);
end;
Dec (TimeoutMs, WaitTime);
end;
until (RC <> 294) or (TimeoutMs <= 0);
SysWaitForThreadTerminate := RC;
end;
function GetOS2ThreadPriority (ThreadHandle: dword): cardinal;
const
BufSize = 32768; (* Sufficient space for > 1000 threads (for one process!) *)
var
PPtrRec: PQSPtrRec;
PTRec: PQSTRec;
BufEnd: PtrUInt;
RC: cardinal;
begin
GetOS2ThreadPriority := cardinal (-1);
GetMem (PPtrRec, BufSize);
if PPtrRec = nil then
begin
FreeMem (PPtrRec, BufSize);
FPC_ThreadError;
end
else
begin
RC := DosQuerySysState (qs_Process, 0, ProcessID, 0, PPtrRec^, BufSize);
if (RC = 0) and (PPtrRec^.PProcRec <> nil)
and (PPtrRec^.PProcRec^.PThrdRec <> nil) then
begin
BufEnd := PtrUInt (PPtrRec) + BufSize;
PTRec := PPtrRec^.PProcRec^.PThrdRec;
while (PTRec^.RecType = qs_Thread) and (PTRec^.TID <> ThreadHandle) and
(PtrUInt (PTRec) + SizeOf (PTRec^) < BufEnd) do
Inc (PTRec);
if (PTRec^.RecType = qs_Thread) and (PTRec^.TID = ThreadHandle) then
GetOS2ThreadPriority := PTRec^.Priority;
end;
FreeMem (PPtrRec, BufSize);
end;
end;
type
TPrio = packed record
PrioLevel: byte;
PrioClass: byte;
Padding: word;
end;
function SysThreadSetPriority (ThreadHandle: dword; Prio: longint): boolean;
{-15..+15, 0=normal}
var
Delta: longint;
Priority: cardinal;
begin
Priority := GetOS2ThreadPriority (ThreadHandle);
if Priority > High (word) then
SysThreadSetPriority := false
else
begin
Delta := Prio * 2;
if Delta + TPrio (Priority).PrioLevel < 0 then
Delta := - TPrio (Priority).PrioLevel
else if Delta + TPrio (Priority).PrioLevel > 31 then
Delta := 31 - TPrio (Priority).PrioLevel;
SysThreadSetPriority :=
DosSetPriority (dpThread, dpSameClass, Delta, ThreadHandle) = 0;
end;
end;
function SysThreadGetPriority (ThreadHandle: dword): longint;
var
Priority: cardinal;
begin
Priority := GetOS2ThreadPriority (ThreadHandle);
(*
Windows priority levels follow a fairly strange logic; let's mimic at least
the part related to the idle priority returning negative numbers.
Result range (based on Windows behaviour) is -15..+15.
*)
if TPrio (Priority).PrioClass = 1 then
SysThreadGetPriority := TPrio (Priority).PrioLevel div 2 - 15
else
SysThreadGetPriority := TPrio (Priority).PrioLevel div 2;
end;
function SysGetCurrentThreadID: dword;
var
TIB: PThreadInfoBlock;
begin
DosGetInfoBlocks (@TIB, nil);
SysGetCurrentThreadID := TIB^.TIB2^.TID;
end;
{*****************************************************************************
Delphi/Win32 compatibility
*****************************************************************************}
procedure SysInitCriticalSection (var CS);
begin
if DosCreateMutExSem (nil, THandle (CS), 0, 0) <> 0 then
FPC_ThreadError;
end;
procedure SysDoneCriticalSection (var CS);
begin
(* Trying to release first since this might apparently be the expected *)
(* behaviour in Delphi according to comment in the Unix implementation. *)
repeat
until DosReleaseMutExSem (THandle (CS)) <> 0;
if DosCloseMutExSem (THandle (CS)) <> 0 then
FPC_ThreadError;
end;
procedure SysEnterCriticalSection (var CS);
begin
if DosRequestMutExSem (THandle (CS), cardinal (-1)) <> 0 then
FPC_ThreadError;
end;
function SysTryEnterCriticalSection (var CS): longint;
begin
if DosRequestMutExSem (THandle (CS), 0) = 0 then
Result := 1
else
Result := 0;
end;
procedure SysLeaveCriticalSection (var CS);
begin
if DosReleaseMutExSem (THandle (CS)) <> 0 then
FPC_ThreadError;
end;
type
TBasicEventState = record
FHandle: THandle;
FLastError: longint;
end;
PLocalEventRec = ^TBasicEventState;
const
wrSignaled = 0;
wrTimeout = 1;
wrAbandoned = 2; (* This cannot happen for an event semaphore with OS/2? *)
wrError = 3;
Error_Timeout = 640;
OS2SemNamePrefix = '\SEM32\';
function SysBasicEventCreate (EventAttributes: Pointer;
AManualReset, InitialState: boolean; const Name: ansistring): PEventState;
var
RC: cardinal;
Name2: ansistring;
Attr: cardinal;
begin
New (PLocalEventRec (Result));
if (Name <> '') and (UpCase (Copy (Name, 1, 7)) <> OS2SemNamePrefix) then
Name2 := OS2SemNamePrefix + Name
else
Name2 := Name;
if AManualReset then
Attr := 0
else
Attr := DCE_AutoReset;
if Name2 = '' then
RC := DosCreateEventSem (nil, PLocalEventRec (Result)^.FHandle,
Attr, cardinal (InitialState))
else
RC := DosCreateEventSem (PChar (Name2), PLocalEventRec (Result)^.FHandle,
Attr, cardinal (InitialState));
if RC <> 0 then
begin
Dispose (PLocalEventRec (Result));
FPC_ThreadError;
end;
end;
procedure SysBasicEventDestroy (State: PEventState);
begin
if State = nil then
FPC_ThreadError
else
begin
DosCloseEventSem (PLocalEventRec (State)^.FHandle);
Dispose (PLocalEventRec (State));
end;
end;
procedure SysBasicEventResetEvent (State: PEventState);
var
PostCount: cardinal;
begin
if State = nil then
FPC_ThreadError
else
(* In case of later addition of error checking: *)
(* RC 300 = Error_Already_Reset which would be OK. *)
DosResetEventSem (PLocalEventRec (State)^.FHandle, PostCount);
end;
procedure SysBasicEventSetEvent (State: PEventState);
begin
if State = nil then
FPC_ThreadError
else
DosPostEventSem (PLocalEventRec (State)^.FHandle);
end;
function SysBasicEventWaitFor (Timeout: Cardinal; State: PEventState): longint;
var
RC: cardinal;
begin
if State = nil then
FPC_ThreadError
else
begin
RC := DosWaitEventSem (PLocalEventRec (State)^.FHandle, Timeout);
case RC of
0: Result := wrSignaled;
Error_Timeout: Result := wrTimeout;
else
begin
Result := wrError;
PLocalEventRec (State)^.FLastError := RC;
end;
end;
end;
end;
function SysRTLEventCreate: PRTLEvent;
begin
Result := PRTLEvent (-1);
DosCreateEventSem (nil, THandle (Result), dce_AutoReset, 0);
end;
procedure SysRTLEventDestroy (AEvent: PRTLEvent);
begin
DosCloseEventSem (THandle (AEvent));
end;
procedure SysRTLEventSetEvent (AEvent: PRTLEvent);
begin
DosPostEventSem (THandle (AEvent));
end;
procedure SysRTLEventWaitFor (AEvent: PRTLEvent);
begin
DosWaitEventSem (THandle (AEvent), cardinal (-1));
end;
procedure SysRTLEventWaitForTimeout (AEvent: PRTLEvent; Timeout: longint);
begin
DosWaitEventSem (THandle (AEvent), Timeout);
end;
procedure SysRTLEventResetEvent (AEvent: PRTLEvent);
var
PostCount: cardinal;
begin
DosResetEventSem (THandle (AEvent), PostCount);
end;
{$DEFINE HAS_GETCPUCOUNT}
function GetCPUCount: LongWord;
const
svNumProcessors = 26;
var
ProcNum: cardinal;
begin
GetCPUCount := 1;
if DosQuerySysInfo (svNumProcessors, svNumProcessors, ProcNum,
SizeOf (ProcNum)) = 0 then
GetCPUCount := ProcNum;
end;
var
OS2ThreadManager: TThreadManager;
procedure InitSystemThreads;
begin
with OS2ThreadManager do
begin
InitManager :=Nil;
DoneManager :=Nil;
BeginThread :=@SysBeginThread;
EndThread :=@SysEndThread;
SuspendThread :=@SysSuspendThread;
ResumeThread :=@SysResumeThread;
KillThread :=@SysKillThread;
CloseThread :=@SysCloseThread;
ThreadSwitch :=@SysThreadSwitch;
WaitForThreadTerminate :=@SysWaitForThreadTerminate;
ThreadSetPriority :=@SysThreadSetPriority;
ThreadGetPriority :=@SysThreadGetPriority;
GetCurrentThreadId :=@SysGetCurrentThreadId;
InitCriticalSection :=@SysInitCriticalSection;
DoneCriticalSection :=@SysDoneCriticalSection;
EnterCriticalSection :=@SysEnterCriticalSection;
TryEnterCriticalSection:=@SysTryEnterCriticalSection;
LeaveCriticalSection :=@SysLeaveCriticalSection;
InitThreadVar :=@SysInitThreadVar;
RelocateThreadVar :=@SysRelocateThreadVar;
AllocateThreadVars :=@SysAllocateThreadVars;
ReleaseThreadVars :=@SysReleaseThreadVars;
BasicEventCreate :=@SysBasicEventCreate;
BasicEventDestroy :=@SysBasicEventDestroy;
BasicEventSetEvent :=@SysBasicEventSetEvent;
BasicEventResetEvent :=@SysBasicEventResetEvent;
BasiceventWaitFor :=@SysBasiceventWaitFor;
RTLEventCreate :=@SysRTLEventCreate;
RTLEventDestroy :=@SysRTLEventDestroy;
RTLEventSetEvent :=@SysRTLEventSetEvent;
RTLEventResetEvent :=@SysRTLEventResetEvent;
RTLEventWaitFor :=@SysRTLEventWaitFor;
RTLEventWaitForTimeout :=@SysRTLEventWaitForTimeout;
end;
SetThreadManager (OS2ThreadManager);
end;
|