Dyskusja:Lazarus problem z Semaphore init failed (possibly too many concurrent threads)

Z Podręcznik Administratora by OPZ SGU
Wersja z dnia 02:22, 29 gru 2012 autorstwa Adminka23 (dyskusja | edycje) (Utworzył nową stronę „autor: shanbaum thank you actually i didn't find and answer yet, so this helped. for those who are interested in a quick decision here it is. if you create a new p...”)
(różn.) ← poprzednia wersja | przejdź do aktualnej wersji (różn.) | następna wersja → (różn.)
Przejdź do nawigacji Przejdź do wyszukiwania

autor:


shanbaum thank you

actually i didn't find and answer yet, so this helped.

for those who are interested in a quick decision here it is. if you create a new project there is a block of code in project1.lpr Code: [Select] {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} so one has only to wipe out {$IFDEF UseCThreads} or define {$DEFINE UseCThreads}. i decided to modify it the second way Code: [Select] {$DEFINE UseCThreads} {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF}