[maemo-developers] Fwd: Multithreaded program for N800..

From: Anselm R Garbe anselm at aplixcorp.com
Date: Tue Mar 18 11:43:30 EET 2008
On Tue, Mar 18, 2008 at 8:36 AM, Martin Grimme <martin.grimme at gmail.com> wrote:
>  Just be careful with threads, because they're evil (TM) !  ;)
>  They are hard to debug, annoy users when deadlocking, and when done
>  wrongly, can have impact on performance.
>
>  My policy is to only use threads when absolutely necessary. In most
>  cases, nonblocking IO and timeout callbacks are fully sufficient, and
>  give more predictable and debuggable behavior. X and most UI-toolkits
>  aren't thread-safe anyway, so threading should never be used in GUI
>  parts.
>
>  Somebody (Richard Stallmann, IIRC) said, "threads are for people who
>  did not understand state-machines". He could be right on this part.

Well, there are a lot of different thread models. Personally I favor
the CSP[1] model to the SRC model (which pthreads follows) see [2] for
reasons. But as mentioned before, for serial communication I'd really
consider to stick with a select()-driven approach.

[1] http://en.wikipedia.org/wiki/Communicating_sequential_processes
[2] http://swtch.com/~rsc/thread/

Kind regards,
--Anselm

More information about the maemo-developers mailing list