{ This file is part of the Free Pascal run time library. Copyright (c) 2002-2014 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 *****************************************************************************} var OS2ThreadManager: TThreadManager; 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; TDosAllocThreadLocalMemory = function (Count: cardinal; var P: pointer): cardinal; cdecl; TDosFreeThreadLocalMemory = function (P: pointer): cardinal; cdecl; const DosAllocThreadLocalMemory: TDosAllocThreadLocalMemory = nil; DosFreeThreadLocalMemory: TDosFreeThreadLocalMemory = nil; OrdDosAllocThreadLocalMemory = 454; OrdDosFreeThreadLocalMemory = 455; TLSAPISupported: boolean = false; { 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; {***************************************************************************** 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; type (* If Thread Local Memory Area (TLMA) and the respective API functions are *) (* not available (OS/2 version 2.x) then handle the memory using array *) (* of pointers indexed by Thread ID - pointer to this array is then stored *) (* in DataIndex (typecasted using the following types). *) TTLSPointers = array [0..4095] of pointer; PTLSPointers = ^TTLSPointers; procedure SysInitThreadvar (var Offset: dword; Size: dword); begin Offset := ThreadVarBlockSize; Inc (ThreadVarBlockSize, Size); end; procedure SysAllocateThreadVars; var RC: cardinal; 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 TLSAPISupported then RC := DosAllocMem (DataIndex^, ThreadVarBlockSize, pag_Read or pag_Write or pag_Commit) else begin if PTLSPointers (DataIndex)^ [ThreadID] <> nil then begin RC := DosFreeMem (PTLSPointers (DataIndex)^ [ThreadID]); if RC <> 0 then OSErrorWatch (RC); end; RC := DosAllocMem (PTLSPointers (DataIndex)^ [ThreadID], ThreadVarBlockSize, pag_Read or pag_Write or pag_Commit); end; if RC <> 0 then begin OSErrorWatch (RC); HandleError (8); end; { 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^^, ThreadVarBlockSize, 0); 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 not performed by the Windows implementation. } if PTLSPointers (DataIndex)^ [ThreadID] = nil then begin SysAllocateThreadVars; InitThread ($1000000); end; SysRelocateThreadVar := PTLSPointers (DataIndex)^ [ThreadID] + Offset; end; function OS2RelocateThreadVar (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 not performed by the Windows implementation. } if DataIndex^ = nil then begin SysAllocateThreadVars; InitThread ($1000000); end; OS2RelocateThreadVar := DataIndex^ + Offset; end; procedure SysInitMultithreading; var RC: cardinal; 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 } RC := DosAllocThreadLocalMemory (1, DataIndex); if RC = 0 then begin (* Avoid the need for checking TLSAPISupported on every call *) (* to RelocateThreadVar - ensure using the right version. *) OS2ThreadManager.RelocateThreadVar := @OS2RelocateThreadVar; CurrentTM.RelocateThreadVar := @OS2RelocateThreadVar; InitThreadVars (@OS2RelocateThreadvar); end else begin OSErrorWatch (RC); (* We can still try using the internal solution for older OS/2 versions... *) TLSAPISupported := false; RC := DosAllocMem (DataIndex, SizeOf (TTLSPointers), pag_Read or pag_Write or pag_Commit); if RC = 0 then InitThreadVars (@SysRelocateThreadvar) else begin OSErrorWatch (RC); RunError (8); end; end; IsMultiThread := true; end; end; procedure SysFiniMultithreading; var RC: cardinal; begin if IsMultiThread then begin if TLSAPISupported then RC := DosFreeThreadLocalMemory (DataIndex) else RC := DosFreeMem (DataIndex); if RC <> 0 then begin {??? What to do if releasing fails?} OSErrorWatch (RC); end; DataIndex := nil; end; end; procedure SysReleaseThreadVars; var RC: cardinal; (* TID serves for storing ThreadID before freeing the memory allocated *) (* to threadvars to avoid accessing a threadvar ThreadID afterwards. *) TID: cardinal; begin if TLSAPISupported then begin RC := DosFreeMem (DataIndex^); DataIndex^ := nil; end else begin TID := ThreadID; RC := DosFreeMem (PTLSPointers (DataIndex)^ [TID]); PTLSPointers (DataIndex)^ [TID] := nil; end; if RC <> 0 then OSErrorWatch (RC); 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; RC: cardinal; 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} RC := DosCreateThread (cardinal (ThreadID), @ThreadMain, TI, CreationFlags, StackSize); if RC = 0 then SysBeginThread := ThreadID else begin SysBeginThread := 0; {$IFDEF DEBUG_MT} WriteLn ('Thread creation failed'); {$ENDIF DEBUG_MT} Dispose (TI); OSErrorWatch (RC); end; end; procedure SysEndThread (ExitCode: cardinal); begin DoneThread; DosExit (0, ExitCode); end; procedure SysThreadSwitch; begin DosSleep (0); end; function SysSuspendThread (ThreadHandle: dword): dword; var RC: cardinal; begin {$WARNING Check expected return value} RC := DosSuspendThread (ThreadHandle); SysSuspendThread := RC; if RC <> 0 then OSErrorWatch (RC); end; function SysResumeThread (ThreadHandle: dword): dword; var RC: cardinal; begin {$WARNING Check expected return value} RC := DosResumeThread (ThreadHandle); SysResumeThread := RC; if RC <> 0 then OSErrorWatch (RC); end; function SysKillThread (ThreadHandle: dword): dword; var RC: cardinal; begin RC := DosKillThread (ThreadHandle); SysKillThread := RC; if RC <> 0 then OSErrorWatch (RC); end; {$PUSH} {$WARNINGS OFF} function SysCloseThread (ThreadHandle: TThreadID): dword; begin { Probably not relevant under OS/2? } // SysCloseThread:=CloseHandle(threadHandle); end; {$POP} function SysWaitForThreadTerminate (ThreadHandle: dword; TimeoutMs: longint): dword; var RC, RC2: cardinal; const { Wait at most 100 ms before next check for thread termination } WaitTime = 100; begin if TimeoutMs = 0 then begin RC := DosWaitThread (ThreadHandle, dcWW_Wait); if RC <> 0 then OSErrorWatch (RC); end else repeat RC := DosWaitThread (ThreadHandle, dcWW_NoWait); if RC = 294 then begin if TimeoutMs > WaitTime then DosSleep (WaitTime) else begin DosSleep (TimeoutMs); RC2 := DosWaitThread (ThreadHandle, dcWW_NoWait); if RC2 <> 0 then OSErrorWatch (RC2); end; Dec (TimeoutMs, WaitTime); end else if RC <> 0 then OSErrorWatch (RC); 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 then OSErrorWatch (RC) else if (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; RC: 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; RC := DosSetPriority (dpThread, dpSameClass, Delta, ThreadHandle); if RC <> 0 then OSErrorWatch (RC); SysThreadSetPriority := RC = 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; procedure SysSetThreadDebugNameA(threadHandle: TThreadID; const ThreadName: AnsiString); begin {$Warning SetThreadDebugName needs to be implemented} end; procedure SysSetThreadDebugNameU(threadHandle: TThreadID; const ThreadName: UnicodeString); begin {$Warning SetThreadDebugName needs to be implemented} end; {***************************************************************************** Delphi/Win32 compatibility *****************************************************************************} procedure SysInitCriticalSection (var CS); var RC: cardinal; begin RC := DosCreateMutExSem (nil, THandle (CS), 0, 0); if RC <> 0 then begin OSErrorWatch (RC); FPC_ThreadError; end; end; procedure SysDoneCriticalSection (var CS); var RC: cardinal; 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; RC := DosCloseMutExSem (THandle (CS)); if RC <> 0 then begin OSErrorWatch (RC); FPC_ThreadError; end; end; procedure SysEnterCriticalSection (var CS); var RC: cardinal; begin RC := DosRequestMutExSem (THandle (CS), cardinal (-1)); if RC <> 0 then begin OSErrorWatch (RC); FPC_ThreadError; end; end; function SysTryEnterCriticalSection (var CS): longint; begin if DosRequestMutExSem (THandle (CS), 0) = 0 then Result := 1 else Result := 0; end; procedure SysLeaveCriticalSection (var CS); var RC: cardinal; begin RC := DosReleaseMutExSem (THandle (CS)); if RC <> 0 then begin OSErrorWatch (RC); FPC_ThreadError; end; 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)); OSErrorWatch (RC); FPC_ThreadError; end; end; procedure SysBasicEventDestroy (State: PEventState); var RC: cardinal; begin if State = nil then FPC_ThreadError else begin RC := DosCloseEventSem (PLocalEventRec (State)^.FHandle); if RC <> 0 then OSErrorWatch (RC); Dispose (PLocalEventRec (State)); end; end; procedure SysBasicEventResetEvent (State: PEventState); var PostCount: cardinal; RC: cardinal; begin if State = nil then FPC_ThreadError else begin (* In case of later addition of error checking: *) (* RC 300 = Error_Already_Reset which would be OK. *) RC := DosResetEventSem (PLocalEventRec (State)^.FHandle, PostCount); if (RC <> 0) and (RC <> 300) then OSErrorWatch (RC); end; end; procedure SysBasicEventSetEvent (State: PEventState); var RC: cardinal; begin if State = nil then FPC_ThreadError else begin RC := DosPostEventSem (PLocalEventRec (State)^.FHandle); if RC <> 0 then OSErrorWatch (RC); end; 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; OSErrorWatch (RC); PLocalEventRec (State)^.FLastError := RC; end; end; end; end; function SysRTLEventCreate: PRTLEvent; var RC: cardinal; begin Result := PRTLEvent (-1); RC := DosCreateEventSem (nil, THandle (Result), dce_AutoReset, 0); if RC <> 0 then OSErrorWatch (RC); end; procedure SysRTLEventDestroy (AEvent: PRTLEvent); var RC: cardinal; begin RC := DosCloseEventSem (THandle (AEvent)); if RC <> 0 then OSErrorWatch (RC); end; procedure SysRTLEventSetEvent (AEvent: PRTLEvent); var RC: cardinal; begin RC := DosPostEventSem (THandle (AEvent)); if RC <> 0 then OSErrorWatch (RC); end; procedure SysRTLEventWaitFor (AEvent: PRTLEvent); var RC: cardinal; begin RC := DosWaitEventSem (THandle (AEvent), cardinal (-1)); if RC <> 0 then OSErrorWatch (RC); end; procedure SysRTLEventWaitForTimeout (AEvent: PRTLEvent; Timeout: longint); var RC: cardinal; begin RC := DosWaitEventSem (THandle (AEvent), Timeout); if RC <> 0 then OSErrorWatch (RC); end; procedure SysRTLEventResetEvent (AEvent: PRTLEvent); var PostCount: cardinal; RC: cardinal; begin RC := DosResetEventSem (THandle (AEvent), PostCount); if RC <> 0 then OSErrorWatch (RC); end; {$DEFINE HAS_GETCPUCOUNT} function GetCPUCount: LongWord; const svNumProcessors = 26; var ProcNum: cardinal; RC: cardinal; begin GetCPUCount := 1; RC := DosQuerySysInfo (svNumProcessors, svNumProcessors, ProcNum, SizeOf (ProcNum)); if RC = 0 then GetCPUCount := ProcNum else OSErrorWatch (RC); end; 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; SetThreadDebugNameA :=@SysSetThreadDebugNameA; SetThreadDebugNameU :=@SysSetThreadDebugNameU; 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;