Re: [Lazarus] Number of CPU threads

2011-02-25 Thread Kjow
2011/2/24 Mattias Gaertner nc-gaert...@netcologne.de: See the package mtprocs unit mtpcpu for a simple heuristic: http://wiki.lazarus.freepascal.org/Parallel_procedures#Getting_MTProcs Mattias Thanks you very much, I will try ASAP. :) Kjow -- ___

[Lazarus] Number of CPU threads

2011-02-24 Thread Kjow
Hi all! Is it possible to determine the number of CPU threads available on an OS (Win, Linux, OSX: so cross platform way) with Lazarus/FPC? (e.g. A dual core = 2 threads, a Core i7 = 8 threads, etc) Thanks! Kjow -- ___ Lazarus mailing list

Re: [Lazarus] Number of CPU threads

2011-02-24 Thread ik
On linux you can read the /proc/cpuinfo file. In Windows you have some API commands for that (I do not know what they are). I'm not sure about MacOSX Ido LINESIP - Opening the source for communication http://www.linesip.com http://www.linesip.co.il On Thu, Feb 24, 2011 at 23:27, Kjow

Re: [Lazarus] Number of CPU threads

2011-02-24 Thread Mattias Gaertner
On Thu, 24 Feb 2011 22:27:31 +0100 Kjow antispamm...@gmail.com wrote: Hi all! Is it possible to determine the number of CPU threads available on an OS (Win, Linux, OSX: so cross platform way) with Lazarus/FPC? (e.g. A dual core = 2 threads, a Core i7 = 8 threads, etc) See the package