[fpc-pascal] Mutithreaded book

2011-03-07 Thread Jorge Aldo G. de F. Junior
I am developing an application that should scale well into those multicore CPUs that we have today, so, basically, i have to use threads. Anybody knows a good book about multi-thread programming in general, message passing etc ? I need to know some technices to deal with some problems i am findin

Re[4]: [fpc-pascal] constref question

2011-03-07 Thread José Mejuto
Hello FPC-Pascal, Monday, March 7, 2011, 5:30:45 PM, you wrote: >> When no modifier is applied (var, const,...) the behavior is >> deterministic or can change from platform to platform, or by ABI ? l> Deterministic. Pointer based values (Classes, Interfaces) are passed by l> reference. Others a

Re: Re[2]: [fpc-pascal] constref question

2011-03-07 Thread leledumbo
> When no modifier is applied (var, const,...) the behavior is > deterministic or can change from platform to platform, or by ABI ? Deterministic. Pointer based values (Classes, Interfaces) are passed by reference. Others are by value. An exception to Ansi- and Wide- Strings, they're passed by re